Forum Discussion
Shri
6 years agoFrequent Visitor
OR condition between multivalue parameters
I am replicating a power bi report on paginated Report Builder that has multiple slicers (or parameters), namely Sales Region, SalesType, State, Model_Name, Serial_Number, etc. When we run the repo...
Hariharan_R
5 years agoSolution Sage
Hi Murali,
Try like below. You may need to handle "ALL" (blank) is no value is passed.
SUMMARIZECOLUMNS (
'Data'[CNTR], 'Data'[CNTR_DT], 'Data'[SUPP_LD_NO],
FILTER (
Data,
(FORMAT ( Data[CNTR_DT], "YYYY-MM-DD" )
<= FORMAT ("2020-01-01", "YYYY-MM-DD" )
|| (PATHCONTAINS ( "A", DATA[CNTR] )))
|| PATHCONTAINS ("1ABC", DATA[SUPP_LD_NO])
))
Thanks
Hari
murali5431
5 years agoHelper III
Thank you Hariharan_R !
- Hariharan_R5 years agoSolution Sage
If my answer helps you, Mark my post as a solution!!