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
PBI_learner0
Frequent Visitor

Display value of columns with if condition

What is the correct dax for displaying the values of the columns?

This is the measure that i did, but it's not displaying any values.

 

Hours = IF([DaysBetween] > 30, SELECTEDVALUE('Table'[MonthlyWorkingHrs]), [BusinessDays] * SELECTEDVALUE('Table'[DailyWorkingHrs]))
5 REPLIES 5
ryan_mayu
Super User
Super User

could you pls provide some sample data and expected output?





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




I want to display the value of monthly working hours if the dates between is greater than 30 days. but if the days between is less than that, i want to multiply the daily hours and the business days (already calculated)

how to identify greater than 30 days or not? it's better to provide some sample data, otherwise it's not easy to provide the proper solution.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




BusinessDays = NETWORKDAYS(MIN('Table'[Dates]), MAX('Table'[Dates]),1)
DaysBetween = DISTINCTCOUNT('Table'[Dates])
PBI_learner0_0-1710982417591.png

 

Hi @PBI_learner0 

 

You may try replacing SELECTEDVALUE function with MAX. Not sure whether your data table has multiple distinct values in MonthlyWorkingHrs and DailyWorkingHrs columns. If so, this is probably the cause. 

Hours =
IF (
    [DaysBetween] > 30,
    MAX ( 'Table'[MonthlyWorkingHrs] ),
    [BusinessDays] * MAX ( 'Table'[DailyWorkingHrs] )
)

 

Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!

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.