Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
titanic123
Helper I
Helper I

New Calculated Column with If and Sum

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.

 

1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

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])

View solution in original post

2 REPLIES 2
titanic123
Helper I
Helper I

Thanks a lot this worked well.

wdx223_Daniel
Super User
Super User

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])

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors