Hi Team,
I have the data in this format,
But need to get this as below format,
Can anyone help me out to get this format.
Thanks in advance
Hi Team,
I have the data in this format,
But need to get this as below format,
Can anyone help me out to get this format.
Thanks in advance
Hi Sushmitha, i believe the direct conversion is not available. however in your case, you can perform below steps:
Hi
Can you share the input file?
Hi, Sorry it has the client data, so couldnβt send the input file. So I have provided the images above with sample data.
You can replace sensitive data with dummy values
Please try the following steps
Check the whether the key and values are in separate columns and change it according to your desired excel format
OK.
SampleInput.xlsx (10.1 KB)
Thank you,
Will there ever be a case where there are more line items than you provided on the sample file or will it always be the same number of row/line items?
Thanks for the solution, but when I take input file with more than 100 rows , getting only the last row value in the output sheet.
To get the assistance you need, please make sure you provide a realistic input sample and also as many details as possible.
I built the solution based on the input sample you provided.
below is the updated code:
Practice01.zip (13.9 KB)
Thanks @SenzoD , its working now.
great, happy I could help, please make sure to mark it as a solution
Hello @SenzoD ,
For date column, for some rows we have 2 values for same column 2 and it is extracting the below row value, not exactly the date value as shown below
This is how getting date value in the highlighted row
And the logic used is ,
Could you please check into this once.
Thanks.
Hi
You need to skip or exclude text that isnβt a date, eg below will exclude text that does not contain a β/β, you can make adjustments as you need.
If(String.IsNullOrWhiteSpace(CurrentRow("Column2").ToString), strDate, If(Not CurrentRow("Column2").ToString.Contains("/"), strDate, CurrentRow("Column2").ToString))
Hello
For one input value, Deduction is coming as empty to the output. While I debug came to know like it is getting cleared for some reason as shown below,
DataRow { HasErrors=false, ItemArray=object[21] { βDesc: βThis item was originally shipped cross-border and will be returned to Wayfair. Deduction reflects the cost of return originally invoiced on #518597068 and the Wayfair Managed Return Rate [(WSC - Allowances) x WMR rate (0.8)].ββ, ββ, ββ, ββ, ββ, ββ, ββ, ββ, ββ, ββ, ββ, ββ, ββ, ββ, ββ, ββ, ββ, ββ, ββ, ββ, ββ }, RowError=ββ, RowState=Added, Table=[DataTable] }
For this deduction value mentioned in the excel
Sample.xlsx (9.5 KB)
Thanks.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.