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 moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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 April 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 |
|---|---|
| 35 | |
| 27 | |
| 26 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 36 | |
| 32 | |
| 26 | |
| 23 |