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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi Good day,
Can anyone pls need assistance on how can i get the result i need.
- The Period should equal to Q1
- The Location is under EAST and SOUTH only
- For SOUTH Location, the Priority should contain 1 only.
DESIRED OUTPUT
Thank you
Solved! Go to Solution.
Hello @AllanBerces ,
Please try following DAX formula in calculated column and please let me know if you face any issues.
RESULT =
IF (
[Period] = "Q1",
IF (
[Location] = "EAST"
|| (
[Location] = "SOUTH"
&& SEARCH ( "1", [Priority], 1, BLANK () ) = 1
),
[Project/Mntc],
"EXCLUDED"
),
"EXCLUDED"
)
@AllanBerces Create a new column to determine if the row meets the conditions
Proud to be a Super User! |
|
@AllanBerces Create a new column to determine if the row meets the conditions
Proud to be a Super User! |
|
Hello @AllanBerces ,
Please try following DAX formula in calculated column and please let me know if you face any issues.
RESULT =
IF (
[Period] = "Q1",
IF (
[Location] = "EAST"
|| (
[Location] = "SOUTH"
&& SEARCH ( "1", [Priority], 1, BLANK () ) = 1
),
[Project/Mntc],
"EXCLUDED"
),
"EXCLUDED"
)
Hi @bhanu_gautam @rajulshah Thank you very much for the help. Working perfectly.