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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
jcc3508
Regular Visitor

Calculate Ratios between two tables

Greetings,

 

I have three tables, as per the attached worksheets:

 

Table 1: "Sales" 

 

IDDateProductSales
4553/15/2023Apple450
4553/15/2023Orange200
4553/15/2023Pencil178
4554/15/2023Apple900
4554/15/2023Orange178
4554/15/2023Pencil205
4556/15/2023Apple800
4556/15/2023Orange700
4556/15/2023Pencil956
1231/10/2022Apple111
1231/10/2022Orange222
1231/10/2022Pencil333
1234/15/2022Apple444
1234/15/2022Orange555
1234/15/2022Pencil666

 

 

Table 2: "Flows"

 

IDDateItemValue
4553/15/2023Turnover470
4553/15/2023Cost204
4553/15/2023Labor176
4554/15/2023Turnover165
4554/15/2023Cost431
4554/15/2023Labor295
4556/15/2023Turnover156
4556/15/2023Cost161
4556/15/2023Labor147
1231/10/2022Turnover489
1231/10/2022Cost371
1231/10/2022Labor277
1234/15/2022Turnover359
1234/15/2022Cost426
1234/15/2022Labor365

 

Table 3: "Settings"

 

IDProjectionBase DateUser
455Up12/29/2022ADY
123Down11/29/2022KQR
367Up12/5/2022KQR
498Base1/7/2023KQR
958Base4/5/2023KQR
447Base7/6/2023ADY

 

Sales is related to Settings (many to one), via a column named "ID"

Flows is related to Settings (many to one), via a column named "ID"

Sales and Flows do not have an active relationship, and aside from having the "ID" column, they also share a "Date" column.

 

I am filtering a dashboard, by the "ID" column, showing only information for a specific "ID" at a time.

 

I would like to calculate Ratios between the "Sales" table and the "Flows" table for a vector of dates, given the "ID" that I am using. E.g.: for ID = "455"

 

Ratio3/15/20234/15/20236/15/2023
Apple/Turnover          0.96          5.45           5.13
Orange/Cost          0.98          0.41           4.35

 

 

Could anyone help on how to do this? Thanks a lot.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @jcc3508 

You can refer to the following solution.

Step 1: You need to add index columns in sale table and flows table

You can create two blank query in power query and put the following codes to advanced editor in power query. then apply them.

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("ddDNCoMwDMDxd+lZaJMmVY97gu0uHsYQEURk739YFcwiJKd+8KN/0mEIxByakCNwxIS57h/7vk51JU5hbCzx/L63+SCYPPKats+y1g20nSJkdPrbI2R1/Eekg4kVKUanu3WK1WldIp2ey0ngvIYI6SCoOgDgiP+/1aNNpJNzVuQaWXeIyBHSYWaHSKeUOs/4Aw==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [ID = _t, Date = _t, Product = _t, Sales = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"ID", Int64.Type}, {"Date", type date}, {"Product", type text}, {"Sales", Int64.Type}}),
    Custom1 = Table.Group(#"Changed Type", {"Date"}, {{"Data", each Table.AddIndexColumn(_, "Index", 1, 1), type table}}),
    #"Expanded Data" = Table.ExpandTableColumn(Custom1, "Data", {"ID", "Product", "Sales", "Index"}, {"ID", "Product", "Sales", "Index"}),
    #"Changed Type1" = Table.TransformColumnTypes(#"Expanded Data",{{"Index", Int64.Type}})
in
    #"Changed Type1"
let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("ddC7CsMgFIDhd3EO6Lla564ds4UMLXStkF6evyZokJAzKfLhzznT5FjEDY48iMeAVO7jd3nl33MpV47BzcMZuub3pxwY2AC3+yOvX0DUTvB5B1QMVDtMYIDWwdR/oUZH1EC1AwoG2OfhuAnYXsFDWAUe9nZJBqodimCAfZ7Yd9rEhw5JMlDbG6oBWofW1c9/", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [ID = _t, Date = _t, Item = _t, Value = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"ID", Int64.Type}, {"Date", type date}, {"Item", type text}, {"Value", Int64.Type}}),
    Custom1 = Table.Group(#"Changed Type", {"Date"}, {{"Data", each Table.AddIndexColumn(_, "Index", 1, 1), type table}}),
    #"Expanded Data" = Table.ExpandTableColumn(Custom1, "Data", {"ID", "Item", "Value", "Index"}, {"ID", "Item", "Value", "Index"}),
    #"Changed Type1" = Table.TransformColumnTypes(#"Expanded Data",{{"Index", Int64.Type}})
in
    #"Changed Type1"

Step 2: You need to create two tables: Calendar and Ratio

Calendar

Calendar = CALENDAR(DATE(2022,1,1),DATE(2023,12,31))

Ratio

Ratio = SUMMARIZE(Sales,[Index],[Product],"Ratio",[Product]&"/"&LOOKUPVALUE(Flows[Item],[Index],Sales[Index]))

vxinruzhumsft_0-1692239319680.png

 

Step 3 Create relationship among tables.

Calendar[Date]->Sales[Date](1:n)

Calendar[Date]->Flows[Date](1:n)

Ratio[Index]->Sales[Index](1:n)

Ratio[Index]->Flows[Index](1:n)

Step 4 Create a measure

Radio % = var sum_sales=CALCULATE(SUM(Sales[Sales]))
var sum_flow=CALCULATE(SUM(Flows[Value]))
return DIVIDE(sum_sales,sum_flow)

Step 5 Create a matrix visual, Put the Radion fieldof Radion table  to row , Date field of calendar table to the colum , then put the mesaure to the value.

Output

vxinruzhumsft_1-1692239608525.png

Best Regards!

Yolo Zhu

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

1 REPLY 1
Anonymous
Not applicable

Hi @jcc3508 

You can refer to the following solution.

Step 1: You need to add index columns in sale table and flows table

You can create two blank query in power query and put the following codes to advanced editor in power query. then apply them.

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("ddDNCoMwDMDxd+lZaJMmVY97gu0uHsYQEURk739YFcwiJKd+8KN/0mEIxByakCNwxIS57h/7vk51JU5hbCzx/L63+SCYPPKats+y1g20nSJkdPrbI2R1/Eekg4kVKUanu3WK1WldIp2ey0ngvIYI6SCoOgDgiP+/1aNNpJNzVuQaWXeIyBHSYWaHSKeUOs/4Aw==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [ID = _t, Date = _t, Product = _t, Sales = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"ID", Int64.Type}, {"Date", type date}, {"Product", type text}, {"Sales", Int64.Type}}),
    Custom1 = Table.Group(#"Changed Type", {"Date"}, {{"Data", each Table.AddIndexColumn(_, "Index", 1, 1), type table}}),
    #"Expanded Data" = Table.ExpandTableColumn(Custom1, "Data", {"ID", "Product", "Sales", "Index"}, {"ID", "Product", "Sales", "Index"}),
    #"Changed Type1" = Table.TransformColumnTypes(#"Expanded Data",{{"Index", Int64.Type}})
in
    #"Changed Type1"
let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("ddC7CsMgFIDhd3EO6Lla564ds4UMLXStkF6evyZokJAzKfLhzznT5FjEDY48iMeAVO7jd3nl33MpV47BzcMZuub3pxwY2AC3+yOvX0DUTvB5B1QMVDtMYIDWwdR/oUZH1EC1AwoG2OfhuAnYXsFDWAUe9nZJBqodimCAfZ7Yd9rEhw5JMlDbG6oBWofW1c9/", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [ID = _t, Date = _t, Item = _t, Value = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"ID", Int64.Type}, {"Date", type date}, {"Item", type text}, {"Value", Int64.Type}}),
    Custom1 = Table.Group(#"Changed Type", {"Date"}, {{"Data", each Table.AddIndexColumn(_, "Index", 1, 1), type table}}),
    #"Expanded Data" = Table.ExpandTableColumn(Custom1, "Data", {"ID", "Item", "Value", "Index"}, {"ID", "Item", "Value", "Index"}),
    #"Changed Type1" = Table.TransformColumnTypes(#"Expanded Data",{{"Index", Int64.Type}})
in
    #"Changed Type1"

Step 2: You need to create two tables: Calendar and Ratio

Calendar

Calendar = CALENDAR(DATE(2022,1,1),DATE(2023,12,31))

Ratio

Ratio = SUMMARIZE(Sales,[Index],[Product],"Ratio",[Product]&"/"&LOOKUPVALUE(Flows[Item],[Index],Sales[Index]))

vxinruzhumsft_0-1692239319680.png

 

Step 3 Create relationship among tables.

Calendar[Date]->Sales[Date](1:n)

Calendar[Date]->Flows[Date](1:n)

Ratio[Index]->Sales[Index](1:n)

Ratio[Index]->Flows[Index](1:n)

Step 4 Create a measure

Radio % = var sum_sales=CALCULATE(SUM(Sales[Sales]))
var sum_flow=CALCULATE(SUM(Flows[Value]))
return DIVIDE(sum_sales,sum_flow)

Step 5 Create a matrix visual, Put the Radion fieldof Radion table  to row , Date field of calendar table to the colum , then put the mesaure to the value.

Output

vxinruzhumsft_1-1692239608525.png

Best Regards!

Yolo Zhu

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

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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