Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hello,
I would like to ask for help as I cannot get over the problem.
I have a matrix table with several measures. These measures are different calculations of contracts for different type of service. It is filtered by service name so I used CONTAINSSTRING for it. I would like to have in the table always only one type of the product and filter it by the slicer. But I do not know how to combine the CONTAINSSTRING and SELECTEDVALUE as it does not work. Below is my measure.
Measure =
Solved! Go to Solution.
Measure =
var s = SELECTEDVALUE('Garance product'[Column 1])
RETURN CALCULATE (
COUNT( 'Orders'[_airtableRecordId] ),
CONTAINSSTRING('Orders'[Product],s),
'Orders'[State] IN { "Fakturace" , "Active"},
USERELATIONSHIP ( 'Calendar'[Date], 'Orders'[Uhrazeno] )
)
Hi @NewPBI_user
First of all, thanks to @lbendlin for the quick and efficient reply.
If your problem is not solved yet, you can also try to use MAX to replace SELECTEDVALUE.
Best Regards,
Yulia Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Measure =
var s = SELECTEDVALUE('Garance product'[Column 1])
RETURN CALCULATE (
COUNT( 'Orders'[_airtableRecordId] ),
CONTAINSSTRING('Orders'[Product],s),
'Orders'[State] IN { "Fakturace" , "Active"},
USERELATIONSHIP ( 'Calendar'[Date], 'Orders'[Uhrazeno] )
)
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
92 | |
87 | |
84 | |
65 | |
49 |
User | Count |
---|---|
140 | |
114 | |
110 | |
59 | |
59 |