The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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])