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.
I have a dimension table with too many rows, My fact table contains less rows as I have filtered it down.I can't apply the same filtering on the dim tables as it returns blanks when I display them in a visual, also another trick is doing merges in power query but I am getting performance issues with this trick. I was looking for an option using dax to see if I can return rows based on if it matches the id column in the related fact table. I am using a star schema so not sure if the related or relatedtable functions may work.
Solved! Go to Solution.
Hi @akhaliq7
not sure if I fully understand you requirement. But you can try
Filter Measure = COUNTROWS ( fact_table[id] )
then place it in the filter pane and then select "Is Not Blank"
Thanks ill try this way i think it will work as someone recommended i do this in another question i posted on the power bi cimmunity for power query.
Hi @akhaliq7
not sure if I fully understand you requirement. But you can try
Filter Measure = COUNTROWS ( fact_table[id] )
then place it in the filter pane and then select "Is Not Blank"