Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
Need to separate the count and seconds values from column "C" to D and E" and depending on the column "A" and "B". Moreover the neglection of unwanted data with "blank". Need not to adjust the column "C"
The column "D" should stands for "Count Values" and Column "E" stands for "seconds values" and seconds should converted into hours.
Thanks.
Solved! Go to Solution.
Hi @Anonymous ,
Please follow these steps:
1.Create a calculated column to get the count value.
D =
IF(
[A]="count",[C])
2.Create a calculated column to get the sec value and convert it to hours.
E =
IF(
[B] ="sec",[C]/3600)
3.The final result is shown below.
If this is not the result you expect, please provide a screenshot of the desired effect, in order to better help you solve the problem.
Best Regards,
Clara Gong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Please follow these steps:
1.Create a calculated column to get the count value.
D =
IF(
[A]="count",[C])
2.Create a calculated column to get the sec value and convert it to hours.
E =
IF(
[B] ="sec",[C]/3600)
3.The final result is shown below.
If this is not the result you expect, please provide a screenshot of the desired effect, in order to better help you solve the problem.
Best Regards,
Clara Gong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.