Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hai Guys I am New to DAX Please help me
I have a table certification logs and I have column named certifications it has different values 1 star. 2 star, 3 stars,
I want to create a calculated column only with 1-star certifications
At the power query level, we can do it, but I am searching DAX level
Solved! Go to Solution.
Hi @AlanP514 ,
I created some data:
Here are the steps you can follow:
Create calculated column.
New Column =
IF(
'Table'[certifications]="1 star",'Table'[certifications],BLANK())
Or you can create a calculated table:
Table 3 =
FILTER(ALL('Table_Copy'),'Table_Copy'[certifications]="1 star")
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @AlanP514 ,
I created some data:
Here are the steps you can follow:
Create calculated column.
New Column =
IF(
'Table'[certifications]="1 star",'Table'[certifications],BLANK())
Or you can create a calculated table:
Table 3 =
FILTER(ALL('Table_Copy'),'Table_Copy'[certifications]="1 star")
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Thank you for your solution , This will work
@AlanP514 , A new column like
if([certifications] ="1 star", True(), false())
If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!