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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
elyamiel1976
New Member

Table cell calculation from existing matrix values

Hi,

 

I have a matrix holding values for Actives per period :

1.PNG

I would like to show on a separate table ( a single cee actually) the ratio between current month and last month.

So for example it wulld show 109% for this data.

 

I couldnt find any way to create a table that will hold values based on calculation from cells on the same column.

 

will appritiane any ideas.

 

Thanks

Ely

 

 

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

Hi @elyamiel1976 ,

 

You don't have to create a table, you could get the value with a measure.

Measure =
DIVIDE (
    LOOKUPVALUE ( test[active], test[period], "2_current_month" ),
    LOOKUPVALUE ( test[active], test[period], "3_last_month" )
)

If you only want a table, you could use the following DAX to create a new table.

Table 2 =
ROW (
    "percentage", DIVIDE (
        LOOKUPVALUE ( test[active], test[period], "2_current_month" ),
        LOOKUPVALUE ( test[active], test[period], "3_last_month" )
    )
)

Then change the format type to percentage format.

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

View solution in original post

1 REPLY 1
v-eachen-msft
Community Support
Community Support

Hi @elyamiel1976 ,

 

You don't have to create a table, you could get the value with a measure.

Measure =
DIVIDE (
    LOOKUPVALUE ( test[active], test[period], "2_current_month" ),
    LOOKUPVALUE ( test[active], test[period], "3_last_month" )
)

If you only want a table, you could use the following DAX to create a new table.

Table 2 =
ROW (
    "percentage", DIVIDE (
        LOOKUPVALUE ( test[active], test[period], "2_current_month" ),
        LOOKUPVALUE ( test[active], test[period], "3_last_month" )
    )
)

Then change the format type to percentage format.

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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