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.
Hello,
I have 2 dimensions (year and product ) and a fact. Inside product dim, I have a rating column for each product.
In my dashboard, I have year as a slicer and I am adding rating as a card.
Though I apply year based slicer, my rating gets rolled up. Why does this happen; even if I use a slicer on year? How to avoid this behavior?
ps: I kept the slicers as cascaded by adding a measure inside the filters (by checking with fact table for blank or not).
Thanks,
@amitchandak .. Any inputs on the previous comments is really helpful.
On a side note, I believe I need to do as below (as dimensions are not related except through fact) based on comments at 5:37 from https://www.youtube.com/watch?v=3h5WS43Ocbg
Meas_RATING=CALCULATE(
SUM(Product[RATING]), Fact)
Thank you @amitchandak for the reply.
But why I need to do that? Why my slicer filters are not taking care not to sum the other rows (which are not applicable by the slicer)? Sorry that I am a novice in this.