Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi All,
I have a table which has three columns of Type, Availability and Date. I'd like to extract a subset of this table based on the selected range of the Date slicer. Then, compute the sum of Availability for each Type which could be either positive or negative. Finally, I want to count how many types which have a positive sum. I have searched around the forum and tried all kinds of methods, but none of them works. Please help, thanks!
Here is my input table:
Type | Availability | Date |
SLS1 | -2 | 12/2/2022 |
C5H | -1 | 12/1/2022 |
SLS1 | 2 | 12/1/2022 |
SLS1 | -2 | 11/29/2022 |
SLS1 | -1 | 11/29/2022 |
C5H | -1 | 11/29/2022 |
SLS1 | -1 | 11/25/2022 |
ECL | 2 | 11/25/2022 |
Here is how it is supposed to look like after filtered by the Date slicer.
Type | Availability | Date |
SLS1 | -2 | 12/2/2022 |
SLS1 | -2 | 11/29/2022 |
SLS1 | -1 | 11/29/2022 |
C5H | -1 | 11/29/2022 |
SLS1 | -1 | 11/25/2022 |
ECL | 2 | 11/25/2022 |
Here is how it is supposed to be after groupped by Type and computed the sum of Availability.
Type | TotalAvailability |
SLS1 | -6 |
C5H | -1 |
ECL | 2 |
Here is what I want finally:
Number_Of_Types_With_Positive_TotalAvailability = 1
Any idea about how to write the DAX function to derive the Measure Number_Of_Types_With_Positive_TotalAvailability?
Solved! Go to Solution.
Hi,
I am not sure how your datamodel and slicer looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
Total availability: =
IF ( HASONEVALUE ( 'Type'[Type] ), SUM ( Data[Availability] ) )
Number_Of_Types_With_Positive_TotalAvailability: =
COUNTROWS ( FILTER ( DISTINCT ( 'Type'[Type] ), [Total availability:] > 0 ) )
Hi,
I am not sure how your datamodel and slicer looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
Total availability: =
IF ( HASONEVALUE ( 'Type'[Type] ), SUM ( Data[Availability] ) )
Number_Of_Types_With_Positive_TotalAvailability: =
COUNTROWS ( FILTER ( DISTINCT ( 'Type'[Type] ), [Total availability:] > 0 ) )
Hi Jihwan_Kim,
The solution you recommended does work! Thank you very much for your help!
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
23 | |
10 | |
10 | |
9 | |
7 |