Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
I use the following measure to calculate date difference what I am trying to do is then count how many are <=60 The measure works perfectly, I am looking to add cards to visual that will count how many are <=60 days remaining.
Solved! Go to Solution.
Thanks @lbendlin
Hi, @jimh153
Based on your description, I've created the following sample data:
I create a calculated column using the DAX expression you provided:
I use the following DAX to count DaysLeft less than 60 days:
CountDays60 = CALCULATE(COUNTROWS('Table'), FILTER('Table', [DaysLeft] <= 60))
Here are the results:
I've provided the PBIX file used this time below.
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Jianpeng Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks @lbendlin
Hi, @jimh153
Based on your description, I've created the following sample data:
I create a calculated column using the DAX expression you provided:
I use the following DAX to count DaysLeft less than 60 days:
CountDays60 = CALCULATE(COUNTROWS('Table'), FILTER('Table', [DaysLeft] <= 60))
Here are the results:
I've provided the PBIX file used this time below.
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Jianpeng Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you. I tried doing this and was not successful, but I tried it in power bi desktop version not the report server version i normally use and it worked. thank you again
You cannot measure a measure directly. Either materialize it first, or create a separate measure that implements the entire business logic.
Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
Do not include sensitive information or anything not related to the issue or question.
If you are unsure how to upload data please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Please show the expected outcome based on the sample data you provided.
Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
33 | |
16 | |
13 | |
10 | |
8 |
User | Count |
---|---|
59 | |
20 | |
12 | |
11 | |
10 |