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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
weakneee
Frequent Visitor

Return Same Value Using Divide

Hello!

 

Hope you're doing well. As the images below, I want to return the same value if the column "TipoMultiplicacao" is "EXTERNA" as an alternate result. 

 

In a nutshell is: If "TipoMultiplicacao" is "INTERNA", divide; if "EXTERNA", don't divide and return the same value" 

 

DAX I'm using:

 

weakneee_1-1682273346522.png

 

What I want (in red)

 

weakneee_0-1682273084714.png

 

Thanks so much!

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.

Jihwan_Kim_0-1682274134661.png

 

CustoAula CC =
IF (
    ReferencialTreinamentos[TipoMultiplicacao] = "Interna",
    DIVIDE (
        ReferencialTreinamentos[Custo],
        ReferencialTreinamentos[NumeroInteriroHoras]
    ),
    ReferencialTreinamentos[Custo]
)

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

View solution in original post

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.

Jihwan_Kim_0-1682274134661.png

 

CustoAula CC =
IF (
    ReferencialTreinamentos[TipoMultiplicacao] = "Interna",
    DIVIDE (
        ReferencialTreinamentos[Custo],
        ReferencialTreinamentos[NumeroInteriroHoras]
    ),
    ReferencialTreinamentos[Custo]
)

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

It worked perfectly! 

 

Thank you so munch, Jihwan!

Helpful resources

Announcements
Fabric Data Days is here Carousel

Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.