This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
Hello Community,
This is the tableDuration in seconds column
How can I add one more column which would say
Psuedocode/logic
IF ([DurationInSecs]>600) THEN 'Warning Extended absense of [DurationInSecs] seconds' Else 'Below 600 seconds'
Solved! Go to Solution.
Hi @reportuser ,
You can create a calculated column using following DAX expression:
FlagColumn = IF ('Table1'[DurationInSecs] > 600,
CONCATENATE("Warning Extended absense of ", CONCATENATE('Table1'[DurationInSecs], " seconds")),
"Below 600 seconds")
Replace 'Table1' in above dax with your table-name.
Thanks,
Pragati
Hi @reportuser ,
You can create a calculated column using following DAX expression:
FlagColumn = IF ('Table1'[DurationInSecs] > 600,
CONCATENATE("Warning Extended absense of ", CONCATENATE('Table1'[DurationInSecs], " seconds")),
"Below 600 seconds")
Replace 'Table1' in above dax with your table-name.
Thanks,
Pragati
@reportuser , try as a new column
IF ([DurationInSecs]>600, "Warning Extended absense of [DurationInSecs] seconds" , "Below 600 seconds")
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 25 | |
| 24 | |
| 22 | |
| 20 | |
| 19 |
| User | Count |
|---|---|
| 51 | |
| 48 | |
| 44 | |
| 21 | |
| 21 |