Forum Discussion

NickHoffmans's avatar
NickHoffmans
Frequent Visitor
4 years ago
Solved

Measure with cross filter

Hello, I have a question on creating a measure, taking into account multiple tables.   In one table ("Date-table") I have a set of data, with a row for each date between 2015 and 2025. This table...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi NickHoffmans 

    CROSSJOIN DAX : Returns a table that contains the Cartesian product of all rows from all tables in the arguments. The columns in the new table are all the columns in all the argument tables.

    Cross join Query : A cross join is a type of join that returns the Cartesian product of rows from the tables in the join. In other words, it combines each row from the first table with each row from the second table.

    The difference is , CROSSJOIN DAX create a new table to combine the two tables to one ,but Cross join Query is add a new column ,then expand the column .

    You can learn more in the links below .

    https://docs.microsoft.com/en-us/dax/crossjoin-function-dax

    https://docs.microsoft.com/en-us/power-query/cross-join

    I also create a sample for you , you can refer to it .

     

    Best Regard

    Community Support Team _ Ailsa Tao