Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello
My table "CALENDRIER FINANCIER" is made of CROSSJOIN of two columns of two other tables "DATES" and "AFFECTATION COLLABORATEURS"
What do y have to do to make visible in a formula of "CALENDRIER FINANCIER" some other columns of "AFFECTATION COLLABORATEURS".
Underneath for example I can't see "DATE DUBUT" or "DATE FIN" of "AFFECTATION COLLABORATEUR" (in Red). I only can see calculated columns of AFFECTATION COLLABORATEUR (in green)
Thank you for your Help.
Solved! Go to Solution.
Hi @PatrickByGecko ,
According to your description, my understanding is that you want to know why the items in red are not visable when you use the IF() function.
Actually, the first paramrter of IF() function requires a scalar rather than a column, the items in green are all measures, measure can been seen as a scalar in this scenario, as a result, they are visable here, for the items in red, they are not measure, they are a column, we need to use some aggregate functions like SUM(), MIN() to chang them to scalar.
Best Regards,
Teige
Hi @PatrickByGecko ,
According to your description, my understanding is that you want to know why the items in red are not visable when you use the IF() function.
Actually, the first paramrter of IF() function requires a scalar rather than a column, the items in green are all measures, measure can been seen as a scalar in this scenario, as a result, they are visable here, for the items in red, they are not measure, they are a column, we need to use some aggregate functions like SUM(), MIN() to chang them to scalar.
Best Regards,
Teige
Thank you very much Teige, it is much more clear to me now.