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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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")

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.