Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric certified for FREE! Don't miss your chance! Learn more
I have particulars column in matrix table i need to compare particular column like table[particulars] = "first", i tried same like that but in if statement it is not showing table and column name.how can i achieve it
Solved! Go to Solution.
Hi @Anonymous,
Try measure as:
Measure =
IF(
MAX('Table'[particulars])="first",
1,
0
)
Here is the output:
If you still have some question, please don't hesitate to let me known.
Best Regards,
Link
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution. Really appreciate!
Hi @Anonymous,
Try measure as:
Measure =
IF(
MAX('Table'[particulars])="first",
1,
0
)
Here is the output:
If you still have some question, please don't hesitate to let me known.
Best Regards,
Link
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution. Really appreciate!
Try using a DAX measure with IF(SELECTEDVALUE(Table[Column] = "first", ...., ...)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 68 | |
| 59 | |
| 44 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 104 | |
| 103 | |
| 37 | |
| 27 | |
| 26 |