The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance 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 Matrix that presents sales areas in the rows and week numbers in the columns and values are the counts of sales. This gives a nice table of sales by week. However there are blanks instead of zeros where I would like zeros if no sales.
I have looked at a lot of solutions on here that seem to refer to 'adapting measures' - however my table is very simple, it doesn't involve measures or anything. I just have the sales table that updates each day and date is linked to date in a calendar table I've created.
Can anyone help with a simple solution to this? Below is an example of how the table looks now and what I've put in to the visualisation if it helps? Thank you!
Solved! Go to Solution.
@Anonymous Create a simple measure like this:
Measure = COUNT('Table'[Priority Group]) + 0
You put that in your Values area instead of the column.
Thanks that's great.
@Anonymous Create a simple measure like this:
Measure = COUNT('Table'[Priority Group]) + 0
You put that in your Values area instead of the column.
User | Count |
---|---|
78 | |
74 | |
43 | |
32 | |
28 |
User | Count |
---|---|
104 | |
95 | |
51 | |
50 | |
46 |