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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
azaterol
Helper V
Helper V

Is it possible to display two measures in one

Hello everyone,

I have two measures.

A sales measure and a sales percentage measure wich calculate the percentage change between April and May.

 

 

Sale 2022 April = Calculate(Document[Sale],DATESBETWEEN('Date'[Date],DATE(2022,4,1),DATE(2022,4,30)))
Previous Month April - May = 
VAR X = [Sale 2022 May] - [Sale 2022 April]
VAR Y = DIVIDE(X, [Sale 2022 April])
Return Y 

 

 

Initial sitation:

 

Sale 2022 May Previous Month April - May Sale 2022 April
$ 2000  50.0 %  $ 1000

 

Expected sitation:

 

Is it possible to display both in one measure. Here as an example:

Sale 2022 May
50.0 % $ 2000

 

1 ACCEPTED SOLUTION
v-jianboli-msft
Community Support
Community Support

Hi @azaterol ,

 

You can try something like this:

Measure = FORMAT([Previous Month April - May],"Percent")&" $"&[Sale 2022 May]

Output:

vjianbolimsft_0-1664249169797.png

Best Regards,

Jianbo Li

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

3 REPLIES 3
v-jianboli-msft
Community Support
Community Support

Hi @azaterol ,

 

You can try something like this:

Measure = FORMAT([Previous Month April - May],"Percent")&" $"&[Sale 2022 May]

Output:

vjianbolimsft_0-1664249169797.png

Best Regards,

Jianbo Li

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

 

hi @azaterol,
you can use a multi row card, through which you can put 2 measures in one card.

@UjjawalTyagi518  thats not what I look for. I use a matrix and still want use it. 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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.

Top Solution Authors