Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
85 | |
66 | |
51 | |
45 |
User | Count |
---|---|
216 | |
89 | |
82 | |
66 | |
57 |