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
codingenthu
Frequent Visitor

How to perform Cross Join between two columns with little bit different approach

I have 2 columns from two different tables as below:

Table1:

size
1
2
3
4


Table2:

unit
50
49
48
47


Desired Output:(New Calculated Table)

sizeunit
150
250
249
350
349
348
450
449
448
447


So based on size value(number) from the Table1,  the top values should return in new rows for example: if size value is 3 then top 3 values, if it is 4 then top 4 values and so on..

Can somebody please help on how can i achieve this in DAX?

1 ACCEPTED SOLUTION
vicky_
Super User
Super User

Here's my attempt:

 

New Table = 
var crossjoined = CROSSJOIN(unit, size)
var toReturn = FILTER(crossjoined, [size] >= RANK(unit, ORDERBY([unit], DESC)))
return toReturn

View solution in original post

1 REPLY 1
vicky_
Super User
Super User

Here's my attempt:

 

New Table = 
var crossjoined = CROSSJOIN(unit, size)
var toReturn = FILTER(crossjoined, [size] >= RANK(unit, ORDERBY([unit], DESC)))
return toReturn

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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