Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi Experts!!
Need help with what i think should be a basic measure.
I want to create 2 measure, (examples below)...
I have put the explanation of what i would like each measure to achieve.
Thanks in advance, guys.
| if data 1 = 1 or 2 or 3 = "A", if not = blank | if data 1 = 4 or 5 or 6 = "b", if not = blank | |
| data1 | measure 1 | measure 2 |
| 1 | A | |
| 2 | A | |
| 3 | A | |
| 4 | B | |
| 5 | B | |
| 6 | B |
Solved! Go to Solution.
Hi @Anonymous ,
Measures:
Measure 1 =
VAR __data =
MAX ( 'Table'[data1] )
RETURN
SWITCH ( __data,
1, "A",
2, "A",
3, "A",
BLANK ()
)Measure 2 =
VAR __data =
MAX ( 'Table'[data1] )
RETURN
SWITCH ( __data,
4, "B",
5, "B",
6, "B",
BLANK ()
)Regards,
Ruslan Zolotukhin (zoloturu)
BI Engineer at Akvelon Inc. / Kharkiv Power BI User Group Leader / DAX & Power BI Trainer
-------------------------------------------------------------------
Did I answer your question? Mark my post as a solution!
It was useful? Press Thumbs Up!
You are from Ukraine? If yes then welcome to Power BI User Group - KhPUG website. Other country? Check and find proper one - Power BI User Groups
Hi @Anonymous ,
Measures:
Measure 1 =
VAR __data =
MAX ( 'Table'[data1] )
RETURN
SWITCH ( __data,
1, "A",
2, "A",
3, "A",
BLANK ()
)Measure 2 =
VAR __data =
MAX ( 'Table'[data1] )
RETURN
SWITCH ( __data,
4, "B",
5, "B",
6, "B",
BLANK ()
)Regards,
Ruslan Zolotukhin (zoloturu)
BI Engineer at Akvelon Inc. / Kharkiv Power BI User Group Leader / DAX & Power BI Trainer
-------------------------------------------------------------------
Did I answer your question? Mark my post as a solution!
It was useful? Press Thumbs Up!
You are from Ukraine? If yes then welcome to Power BI User Group - KhPUG website. Other country? Check and find proper one - Power BI User Groups
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 37 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 69 | |
| 67 | |
| 32 | |
| 27 | |
| 26 |