Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi All, Please help me with the DAX for calculated column in PowerBi :
I am trying to create a new column using below formula from Excel in PowerBi
Denied Access:=IF(SUM(Details[NCC Denied Access]) > 0, SUM(Details[NCC Denied Access]), blank())
Thansk in advance.
Solved! Go to Solution.
if you are create a calculated column in DAX, the code may be
Denied Access=IF(Details[NCC Denied Access] > 0, Details[NCC Denied Access])
Thanks a lot this worked well.
if you are create a calculated column in DAX, the code may be
Denied Access=IF(Details[NCC Denied Access] > 0, Details[NCC Denied Access])