how to convert this equation from excel to power bi ?

Ahmed Hesham Abdel- Hay 20 Reputation points
2023-06-06T10:27:59.96+00:00

SUM(SUMIFS($I$22:$I$1048576,$Q$22:$Q$1048576,{"1.1","1.9","1.17"},A$22:A$1048576,A3))/1000

Excel
Excel
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
2,024 questions
{count} votes

Accepted answer
  1. MOUSSA EL HAJRAOUI 315 Reputation points
    2023-06-06T10:47:49.8666667+00:00
    DIVIDE(
        SUMX(
            FILTER(
                TableName,
                TableName[AColumn] IN {"1.1", "1.9", "1.17"}
                    && TableName[BColumn] = A3
            ),
            TableName[CColumn]
        ),
        1000
    )
    
    

    Replace "TableName" with the actual name of the table in your data model.

    Also, replace "AColumn," "BColumn," and "CColumn" with the corresponding column names in your table.

    If the answer is helpful, please click "Accept Answer" and kindly upvote it.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.