The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Greeting members ,
i want to create a calculated column using IF and all expect if possible .
here is a sample of data :
i want to create the G.Note column , this column will have the NULL(or the value from another column) value if the same ID got the same note (as you can see the ID=2)
i think im able to acheive this using allexpect but im missing the right sentence .
Thanks all in advance .
Solved! Go to Solution.
@Rayzo92 ,
new column =
var _cnt = countx(filter(Table, [id] <earlier([ID]) && [Note+] = earlier([Note+]) ), [ID])
return
if(isblank(_cnt) , [Note+], null)
@Rayzo92 ,
new column =
var _cnt = countx(filter(Table, [id] <earlier([ID]) && [Note+] = earlier([Note+]) ), [ID])
return
if(isblank(_cnt) , [Note+], null)
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
109 | |
78 | |
71 | |
52 | |
50 |
User | Count |
---|---|
123 | |
119 | |
76 | |
64 | |
60 |