Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello
In my report I have a table which has columns "TYPE" ,"Meter Size".I have few conditions to display Type-
For the types which contains"TMS" then meter sizes"1,3/8,5/8" must be displayed.For other TYPES all Meter Sizes musst be displayed.
Solved! Go to Solution.
What you're looking for is something like this:
I'm using this measure:
IF(
CONTAINSSTRING(SELECTEDVALUE(T_MeterSize[Activity Type]),"TMS"),
"1,3/8,5/8",
SELECTEDVALUE(T_MeterSize[Meter Size])
)
Proud to be a Super User!
What you're looking for is something like this:
I'm using this measure:
IF(
CONTAINSSTRING(SELECTEDVALUE(T_MeterSize[Activity Type]),"TMS"),
"1,3/8,5/8",
SELECTEDVALUE(T_MeterSize[Meter Size])
)
Proud to be a Super User!
Hi @PavaniD,
Could you please provide more information about your issue?
A pbix with same data would be nice if it's possible to you or pictures of your data and formulas
Proud to be a Super User!
here is the report
For the types which contains"TMS" then "TMS TYPE" having meter sizes"1,3/8,5/8" must be displayed.For other TYPES all Meter Sizes must be displayed.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
72 | |
39 | |
31 | |
26 |
User | Count |
---|---|
97 | |
87 | |
43 | |
40 | |
35 |