Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi,
Can you help me write a DAX command that will count the raw that satisfy this condition.
I have a table of clients and dates of recent activity.
The "6 months" column check how much activity has been in the last 6 months in specific types of tasks.
The "12 months" column works in a similar way.
Solved! Go to Solution.
The code works fine as it was but you need the filters that you are applyting to the table visual (ClassificationID and TextFiled14) applied at the page level instead. Otherwise you'll get different results in the table and elsewhere, because the filters are different. You can in any case simplify the measure above a bit:
Green 6 or 12 =
COUNTROWS (
FILTER (
DISTINCT ( cicmpy[cmp_code] ),
( [6 miesięcy_miara] + [12 miesięcy_miara] ) > 0
)
)
Notice that the result is exactly the same as checking for green on 12 months only, since checking if a date is within the last 12 months is equivalent to checking if a date is within the last 6 months OR within the last 12 months
See it all at work in the attached file (Page 2)
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
The code works fine as it was but you need the filters that you are applyting to the table visual (ClassificationID and TextFiled14) applied at the page level instead. Otherwise you'll get different results in the table and elsewhere, because the filters are different. You can in any case simplify the measure above a bit:
Green 6 or 12 =
COUNTROWS (
FILTER (
DISTINCT ( cicmpy[cmp_code] ),
( [6 miesięcy_miara] + [12 miesięcy_miara] ) > 0
)
)
Notice that the result is exactly the same as checking for green on 12 months only, since checking if a date is within the last 12 months is equivalent to checking if a date is within the last 6 months OR within the last 12 months
See it all at work in the attached file (Page 2)
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Hi @amiskow
How do you want the result?
Place this measure in a card visual:
Measure =
COUNTROWS (
FILTER (
ADDCOLUMNS ( DISTINCT ( Table1[Company] ), "@Lasdate", [LastDate] ),
([6 months] + [12 month]) > 0
)
)
If this doesn't work please share a pbix with dummy data reproducing the issue
By the way, you can simplify the code for [LastDate] using the IN operator
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Hi @AlB ,
Thank you for contacting me. Your solution does not work correctly, or I cannot make it. 😞
I'm sending the file http://gofile.me/4vwta/cXXTFhjYm
Hi @amiskow ,
Can you please a bit a clearer about your requirement? Are you looking to get the count of the green values from 6 months and 12 months columns?
If yes, what is thelogic behind the red and green colurs in your table?
Hi @PC2790 ,
I want to know how many green rows is in the table (single rows), not the sum of the numbers in the cells .
In the photo we have 2 green rows in the 6 month column, and 3 rows in the 12 month column.
The table actually over 10k rows.
The logic is as described above.
"Last date" is a measure that searches for the latest task from SQL table a given task type, it is not very important for this case.
"6 month" is measure with simple logic that allows conditional formatting. (6 month = IF([LastDate]<TODAY()-182,0,1))
"12 month" is measure same as 6 only 12
I hope I have described the cave enough 😉
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
91 | |
87 | |
84 | |
67 | |
49 |
User | Count |
---|---|
131 | |
110 | |
96 | |
70 | |
67 |