Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.
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.
could you pls provide some sample data and expected output?
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.
Proud to be a Super User!
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!
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
76 | |
73 | |
71 | |
49 | |
41 |
User | Count |
---|---|
54 | |
48 | |
33 | |
32 | |
28 |