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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Analitika
Post Prodigy
Post Prodigy

Wrong calculation measure in Power BI

Hello,

 

I would like to ask how to exclude additional type from table. 

_Gauta, EUR = 
CALCULATE(
    [__Lik_Suma]
    ,FILTER(
        _APV,
        (CONTAINSSTRING([apyvarta.operacija],"Pajamavimas") && not [apyvarta.operacija] in {"Turto pajamavimas"} )
        || CONTAINSSTRING([apyvarta.operacija],"Gauta")
        || CONTAINSSTRING([apyvarta.operacija],"Pradinis")

    )
)

When I add additional containsstring in formula nothing changes. For example, if I add && not  

not [apyvarta.operacija] in {"Skolos tiekejams"}. So what be correct solution?
2 REPLIES 2
Hariharan_R
Solution Sage
Solution Sage

Hi @Analitika 

You need to use your base column which contains the word. I think you are refering the measure and it will be always one value check. 

 

Also || you want to filter, isn't it? please add with in Filter.

 

Try like above.  

 

 

Result =
CALCULATE (
    SUM ( 'Table'[Value] ),
    FILTER (
        'Table',
        CONTAINSSTRING ( 'Table'[Category], "Pajamavimas" )
            && NOT 'Table'[Category]
                IN { "Turto pajamavimas" } || CONTAINSSTRING ( 'Table'[Category], "Gauta" )
                    || CONTAINSSTRING ( 'Table'[Category], "Pradinis" )
    )
)

 

 

Thanks

Hari

Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


My Blog :: YouTube Channel :: My Linkedin


But I need to not include this [apyvarta.operacija] in {"Skolos tiekejams"}. How to achieve this, I used not  [apyvarta.operacija] in {"Skolos tiekejams"}.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

Check out the June 2024 Power BI update to learn about new features.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.