Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
murali5431
Helper III
Helper III

Combining OR & AND in multi-value parameters

Hi,

 

I have 3 parameters in my report query. The system generated DAX is as follows. I need to modify below query such that either I enter a combination of [CNTR] & [CNTR_DT] or enter just enter [SUPP_LD_NO] as the parameter, leaving other two fields blank.

 

EVALUATE SUMMARIZECOLUMNS('Data'[CNTR], 'Data'[CNTR_DT], 'Data'[SUPP_LD_NO], RSCustomDaxFilter(@DataCNTR,EqualToCondition,[Data].[CNTR],String), RSCustomDaxFilter(@DataCNTRDT,EqualToCondition,[Data].[CNTR_DT],DateTime), RSCustomDaxFilter(@DataSUPPLDNO,EqualToCondition,[Data].[SUPP_LD_NO],String))

 

Assuming I was clear with my requirement, please assist.

 

Regards,

Muralidhar

3 REPLIES 3
Hariharan_R
Solution Sage
Solution Sage

Hi Murali,

    Use custom DAX query option and use the below code. 

Table = 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])
))
You need to add expression for parameters - Join(Parametername,"|") as like to make it work. Also you need to handle ALL in case if it is blank
 
Thanks
Hari

@Hariharan_R .. I am unable to replicate your suggestion into my program, as it is still asking me to enter values in other fields. Can you let me know how I can modify below to accomplish it.

 

EVALUATE SUMMARIZECOLUMNS('Data'[CNTR], 'Data'[CNTR_DT], 'Data'[SUPP_LD_NO], RSCustomDaxFilter(@DataCNTR,EqualToCondition,[Data].[CNTR],String), RSCustomDaxFilter(@DataCNTRDT,EqualToCondition,[Data].[CNTR_DT],DateTime), RSCustomDaxFilter(@DataSUPPLDNO,EqualToCondition,[Data].[SUPP_LD_NO],String))

 

Thanks for your help!

Muralidhar

v-janeyg-msft
Community Support
Community Support

Hi, @murali5431 

 

I reproduced your scene in report builder, Is your data source 'AS'? I found that the choice of parameters is in the order of creating the parameters. And if you choose multiple options, it can't contain a null value by default. And it seems that only the value can be customized, and the interaction between the parameters can't be controlled.

v-janeyg-msft_0-1621413338493.png

If you still have problems, please feel free to ask me.

 

Best Regards

Janey Guo

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.