I am facing problem in concatenating values of my two column indexes. There is a fix header for column index1, but not fixed header for column2.
I need to sort column2, round off it, then concatenate the entire result in a single line.
Please find attached the workflow, I am getting the required mapping, but it overwrites the previous value every time, when I am trying to write in a single line.
Output needed in this format- +$3.8 M Price,+$1.4 M Other,+$0 M Acquisition,$-0.9 M Physical,$-6.5 M Mfg
Output getting -
(From d In DT.AsEnumerable
Let n = CDbl(d(1).ToString.Trim)
Order By n Descending
Let s = String.Format("${0} {1}", n.ToString("N2"), d(0).ToString)
Select v = s).ToArray
(From d In DT.AsEnumerable
Let n = CDbl(d(1).ToString.Trim)
Order By n Descending
Let s = String.Format("{0} {1}", n.ToString("$+#.#;$-#.#;(0)"), d(0).ToString)
Select v = s).ToArray
Thankyou so much for your response
Yes, I wanted the same way, just one thing I didnât understand, for some values like +$-0.9, +$-6.5, it has both + and - signs there, even though we have this condition in our workflow ,
If âItemValue.ToString.Contains(â-â)â , just add $, otherwise add â+$â
while in output it shows the correct ones
Could you please help me understand this
Thankyou so much for your response
I tried the solution you suggested. I also need to perform a few operations on all the values there, as dividing the value by 1000 then round it to one digit.
I was using this, â(Math.Round(ItemValue,1))/1000â followed by âMath.Round(ItemValue,1)â , so as it comes like +$3.8 M Price,+$1.4 M Other,+$0 M Acquisition,$-0.9 M Physical,$-6.5 M Mfg
how can we apply this to all our values in linq
(From d In DT.AsEnumerable
Let n = CDbl(d(1).ToString.Trim)
Order By n Descending
Let nd = n / 1000
Let s = String.Format("{0} M {1}", nd.ToString("$+0.#;$-0.#;$0"), d(0).ToString)
Select v = s).ToArray
I was trying the solution with one extra column, again dynamic header, it has âItem Commentsâ, which might be there or might not be. If comments are there, I need to add it along. Itâs appearing correctly in logs. But I guess itâs not getting added to the Collection. Please suggestâŚ
you could find image and xaml attached
can you share some sample data with this optional Item Comments column
When a different output is expexcted also share the epected output sample. Thanks for support
Hi @ppr ,
$+3.8 M Price (+$0.86M spend delays) , $+1.4 M Other (Low margin) , 0 M Acquisition, $-0.9 M Physical, $-6.5 M Mfg. This is the solution I was expecting. I have kept the 3rd column values under braces, as required. I tried your solution, with slight modifications. It works⌠LInqSol.xaml (10.3 KB)
Hey all
I tried both the solution, both works as expected. You could use @lrtetala one for conventional way and @ppr one for linq way. Thankyou so much both of you for your efforts, it helped a lot.