Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 84 | |
| 48 | |
| 36 | |
| 31 | |
| 29 |