Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
8 | |
7 |
User | Count |
---|---|
13 | |
12 | |
11 | |
10 | |
8 |