The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I have created a measure like this one.
Avg =Calculate(AVERAGE(Table1[column1]),Table1[column2]="SpecificWord",SEARCH("containword1",Table1[column3],1,0)||SEARCH("containword2",Table1[column3],1,0)
and this works fine but I am wondering if it is possible to use a variable instead of hardcoding 'containword1 and 'containword2 for the search?
Thanks
Solved! Go to Solution.
Hi @bchouinard,
Yes, you can define variables to return 'containword1 and 'containword2' and used in the Search() function. But you need to define two variables. The modified measure like below:
Avg = var v1="ca"
var v2="ro"
return
Calculate(AVERAGE(Table1[column1]),Table1[column2
Best Regards,
Qiuyun Yu
Hi @bchouinard,
Yes, you can define variables to return 'containword1 and 'containword2' and used in the Search() function. But you need to define two variables. The modified measure like below:
Avg = var v1="ca"
var v2="ro"
return
Calculate(AVERAGE(Table1[column1]),Table1[column2
Best Regards,
Qiuyun Yu
User | Count |
---|---|
87 | |
84 | |
36 | |
35 | |
32 |
User | Count |
---|---|
96 | |
75 | |
67 | |
52 | |
52 |