March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I have a table similiar to the below:
DateTimeRecieved | Subject | Folder |
01/01/2022 | Red | Square |
23/01/2022 | Blue | Circle |
28/01/2022 | Red | Square |
03/02/2022 | Red | Square |
15/02/2022 | Green | Triangle |
I want to count the distinct subjects per month but only count the first occurence of the subject with the month it was recieved. I.e. Count 'Red' as 1 and only show it when I filter the month to January (If the month was filtered to Feb do not include red in the coutn of subject)
This data will be represented in a bar graph showing 'Number of subjects' by 'Folder' This graoh can then be filtered by month of DateTimeReceived
Thanks
@amitchandak - Thanks for the response.
Is the 'Month Year sort' column to be a seperate column from 'Month Year'?
When I try to write both these DAX in the same column I receive a syntax error.
Thanks
@TG_12 , 2 separate columns
How to Create Sort Column and Solve Related Errors:
https://www.youtube.com/watch?v=KK1zu4MBb-c
@amitchandak - Appreciate your assistance here and thank you for sharing that vid on sort columns - very informative!
Unfortunately when using this solution the measure will still count the unique subject as '2' as it appears in 2 months.
E.g. using the following example the measure will count 'Red' in both Jan and Feb when I would only like to count 'Red' in Jan as that is when it first appeared
Month Year | Subject |
Jan-2021 | Red |
Jan-2021 | Red |
Feb-2021 | Red |
The ideal scneario from this data example would be a count that shows the total unique subjects being = 1 which can then be filtered by month to show Jan-2021 = 1 & Feb-2021 = 0
fJust to follow the subject
@TG_12 , create a month year column and then create meausre
column
Month Year = FORMAT([Date],"mmm-yyyy")
Month Year sort = FORMAT([Date],"yyyymm")
measure =
countrows(Summarize(Table, Table[month], Table[Subject]))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |