Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Fabric community is now in read-only for platform upgrade. Learn more

Reply
reportuser
Helper II
Helper II

Alert Column

Hello Community,


This is the table
Duration in seconds columnDuration 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'

1 ACCEPTED SOLUTION
Pragati11
Super User
Super User

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

 

 

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

View solution in original post

2 REPLIES 2
Pragati11
Super User
Super User

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

 

 

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

amitchandak
Super User
Super User

@reportuser , try as a new column

IF ([DurationInSecs]>600, "Warning Extended absense of [DurationInSecs] seconds" , "Below 600 seconds")

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.