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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Dajakda
Regular Visitor

Dividir entre dos objetos visuales

Dajakda_0-1728949064881.png

Hola, tengo estos dos objetos visuales y me gustaría crear un tercer objeto que muestre el resultado de la división entre altas/preventas mes en valor porcentual. Agradezco su ayuda por favor

2 ACCEPTED SOLUTIONS
aduguid
Super User
Super User

If you don't already have these as measures, I'd create them.

Preventas Mes = SUM(Table[Preventas Mes])
Altas = SUM(Table[Altas])

 

Then you can create the percentage

Percentage = DIVIDE([Altas], [Preventas Mes], 0)

 

View solution in original post

Anonymous
Not applicable

Hi @Dajakda ,

 

Maybe you can try formula like below to create measure:

 

sum_s =
CALCULATE (
    SUM ( TableS[PreSalesAmount] ),
    FILTER ( 'TableS', TableS[Month] = [Sel] )
)
sum_p =
CALCULATE (
    SUM ( TableP[PreSalesAmount] ),
    FILTER ( 'TableP', TableP[Month] = [Sel] )
)
result = DIVIDE([sum_s],[sum_p])

 

 

vkongfanfmsft_0-1728981027634.png

 

Best Regards,
Adamk Kong

 

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

Hi @Dajakda ,

 

Maybe you can try formula like below to create measure:

 

sum_s =
CALCULATE (
    SUM ( TableS[PreSalesAmount] ),
    FILTER ( 'TableS', TableS[Month] = [Sel] )
)
sum_p =
CALCULATE (
    SUM ( TableP[PreSalesAmount] ),
    FILTER ( 'TableP', TableP[Month] = [Sel] )
)
result = DIVIDE([sum_s],[sum_p])

 

 

vkongfanfmsft_0-1728981027634.png

 

Best Regards,
Adamk Kong

 

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

aduguid
Super User
Super User

If you don't already have these as measures, I'd create them.

Preventas Mes = SUM(Table[Preventas Mes])
Altas = SUM(Table[Altas])

 

Then you can create the percentage

Percentage = DIVIDE([Altas], [Preventas Mes], 0)

 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.