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 need to build a matrix visual that is connected to a slicere
The slicers is nested that contains two inputs : slic1 and slic2
The matrix visual rows are slic1 and slic2 and the value inpute is a filter column "fc "
fc is a measure that being calculated like this:
fc =
I think I koow why , but is their a way to solve this ,
Ps : all columns are text columns
Regards
Solver 🙂
CALCULATE(MIN('table'[col_1]),table'[col_2]="filter value")
@Nazdac911
you use calculatetable that's why it's give you error.
column =CALCULATE(VALUES('table'[col_1]),table'[col_2]="filter value")
@Nazdac911 If this post helps, please consider accept as solution to help other members find it more quickly and Appreciate your Kudos.
Thank you for the fast reply
unfotunality , even with calculate , after playing a little with the nested slicers I could find a compination that casue an error 😞
is their is a way to use MAX or MIN to prevent this error ?