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.
I am trying to perform counts based on number of days that a store has no safety incidents. The first list shows the store names, the date, and the number of times they reported Safe (No Incidents) in a day. If the store has any incidents, it's marked with a zero. Any zero makes the day considered not safe. This is not really a count of Safe, but rather a count of dates, with at least 1 safe, but no zeros on that specific date. Here is the example data:
StoreName | Date | Safe |
StoreA | 1/1/2017 | 1 |
StoreA | 1/2/2017 | 1 |
StoreA | 1/3/2017 | 1 |
StoreA | 1/3/2017 | 1 |
StoreA | 1/4/2017 | 1 |
StoreB | 1/1/2017 | 1 |
StoreB | 1/2/2017 | 1 |
StoreB | 1/2/2017 | 0 |
StoreB | 1/3/2017 | 1 |
StoreC | 1/1/2017 | 1 |
StoreC | 1/1/2017 | 0 |
StoreC | 1/1/2017 | 1 |
StoreC | 1/2/2017 | 0 |
StoreC | 1/3/2017 | 1 |
The results are to count the number of Safe days only.
StoreName | 1/1/2017 | 1/2/2017 | 1/3/2017 | 1/4/2017 | Total |
StoreA | 1 | 1 | 1 | 1 | 4 |
StoreB | 1 | 1 | 2 | ||
StoreC | 1 | 1 | |||
Total | 2 | 1 | 3 | 1 | 7 |
Any help would be greatly appreciated,
Solved! Go to Solution.
Hi @aellison
Try this measure...
Ind Safe = SUMX ( SUMMARIZE ( Safe; Safe[StoreName]; Safe[Date]; "Ind Safe"; PRODUCT ( Safe[Safe] ) ); [Ind Safe] )
Or
Ind Safe = SUMX ( SUMMARIZE ( Safe; Safe[StoreName]; Safe[Date]; "Ind Safe"; IF(PRODUCT(Safe[Safe]) =0;BLANK();PRODUCT(Safe[Safe])) ); [Ind Safe] )
The matrix looks like...
Regards
BILASolution
Hi @aellison
Try this measure...
Ind Safe = SUMX ( SUMMARIZE ( Safe; Safe[StoreName]; Safe[Date]; "Ind Safe"; PRODUCT ( Safe[Safe] ) ); [Ind Safe] )
Or
Ind Safe = SUMX ( SUMMARIZE ( Safe; Safe[StoreName]; Safe[Date]; "Ind Safe"; IF(PRODUCT(Safe[Safe]) =0;BLANK();PRODUCT(Safe[Safe])) ); [Ind Safe] )
The matrix looks like...
Regards
BILASolution
Perfect ...thank you ..
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 |
---|---|
72 | |
71 | |
55 | |
37 | |
31 |
User | Count |
---|---|
87 | |
62 | |
61 | |
49 | |
45 |