Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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)
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
71 | |
54 | |
38 | |
31 |
User | Count |
---|---|
71 | |
64 | |
60 | |
50 | |
45 |