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
Anonymous
Not applicable

Excel Formula to Power Bi

Hi Folks,

 

Need your Help on  convert this Excel formula to Dax Power BI formula.

I already tried searching but doesn't work.

 

Validitor = Unique Value

Date/Hour= Date of Call

 

Allan-Mautante_0-1614422790141.png

 

.

1 ACCEPTED SOLUTION
v-lionel-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please refer to the formulas, if you still have doubts, please provide sample data and expected output.

blanks = ISBLANK( [Column] ) 

Validation = MAX( [column1] ) & MAX( [column2] )

Repeated Date & Time Call = 
IFERROR(
    blanks = TRUE(),
    CALCULATE(
        SUM([colum]),
        FILTER( )
    )
)

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

2 REPLIES 2
v-lionel-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please refer to the formulas, if you still have doubts, please provide sample data and expected output.

blanks = ISBLANK( [Column] ) 

Validation = MAX( [column1] ) & MAX( [column2] )

Repeated Date & Time Call = 
IFERROR(
    blanks = TRUE(),
    CALCULATE(
        SUM([colum]),
        FILTER( )
    )
)

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

mahoneypat
Microsoft Employee
Microsoft Employee

Instead of giving the Excel formula, you can likely get the DAX expression you need from the community by providing a sample input table with the desired output column or table.  Input table should be in a copy/paste-able format (insert table).  Even better to provide a link to a pbix file with a mock up of your data.

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


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 FABINSIDER for a $400 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