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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

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
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.