Forum Discussion
How to Separate values from single column to two different columns depending on the values.
Hello,
Here have a table consits of column "Count Column" , "Seconds Column", "Value Column".
Need to copy and paste the data from value column to the count value column and seconds value column depending on its "count" or "seconds". For seconds it should be saved in hours instead of seconds.
Below Image I show how the data should comes from the individual columns.
Thanks..!
pls try this
3 Replies
- Ahmedx
Super User
- audreygerred
Super User
Hello! You can do this in Power Query by adding custom column and conditional columns. Assuming the columns you have in your data are Count Column, Seconds Column, Value Column. For custom column, create a column that will convert your Value column to Seconds Value Column (in hours) - just go ahead and let it do the math on every value, we will take care of getting the correct values into proper columns next. For the first conditional column do something along the lines of if Seconds Column equals sec return the custom column that you created to show the seconds in hours, else blank. For the next conditional column do something like if Seconds Column is blank return the value from Value Column, else blank.
- AnonymousNot applicable
Hello audreygerred,
Thanks for the reply. Instead of conditional column. Need to use DAX for the new columns.
Could you please suggest anything upon this requirement.
Thanks..