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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.