Forum Discussion
archana_c
2 years agoHelper I
Use Filter in DAX and Add a field parameter
I have a table containing loans, loan types and different value fields. I have created a graph visual which shows loans in the x-axis and field parameter (consists of value fields) in the y-axis. I n...
mohgh
2 years agoRegular Visitor
Hope this could helps you out:
SelectedLoanTypeMeasure =
SWITCH (
SELECTEDVALUE('YourSlicerTable'[SelectedLoanType]),
"Type1", [LoanType1Measure],
"Type2", [LoanType2Measure],
BLANK()
)