Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hello,
How can I put the same name of vendor when the no_client NUM still have a name of vendor? If the no_client NUM don't have any client name, then let blank.
Thank!
Solved! Go to Solution.
Hello @sportive92003 ,
Please try this DAX to create the calculated column..
Vendor =
IF(
NOT(ISBLANK(Table[nom_client])),
CALCULATE(
MAX(Table[Vendeur]),
FILTER(
Table,
Table[no_client NUM] = EARLIER(Table[no_client NUM]))),
BLANK())
If you find this helpful , please mark it as solution and Your Kudos are much appreciated!
Thank You
Dharmendar S
Hello @sportive92003 ,
Please try this DAX to create the calculated column..
Vendor =
IF(
NOT(ISBLANK(Table[nom_client])),
CALCULATE(
MAX(Table[Vendeur]),
FILTER(
Table,
Table[no_client NUM] = EARLIER(Table[no_client NUM]))),
BLANK())
If you find this helpful , please mark it as solution and Your Kudos are much appreciated!
Thank You
Dharmendar S
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.