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! Learn more
Hey guys,
I have create this measure:
Solved! Go to Solution.
Hi @Raul,
You don't have to use the M. You can use the calculated column instead. Please refer to the snapshot below. The formula could be like below, which is also the DAX.
Col. Renda =
IF (
LEFT ( RendaSocietats[Concepte Renda]; 5 ) = "FFG01";
LOOKUPVALUE (
ServeisClients[Colaborador];
ServeisClients[CodServei]; "REN";
ServeisClients[CodClient]; RendaSocietats[CodClient]
);
BLANK ()
)
Best Regards,
Dale
Hi @Raul,
You don't have to use the M. You can use the calculated column instead. Please refer to the snapshot below. The formula could be like below, which is also the DAX.
Col. Renda =
IF (
LEFT ( RendaSocietats[Concepte Renda]; 5 ) = "FFG01";
LOOKUPVALUE (
ServeisClients[Colaborador];
ServeisClients[CodServei]; "REN";
ServeisClients[CodClient]; RendaSocietats[CodClient]
);
BLANK ()
)
Best Regards,
Dale
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.