new calculated column
3 TopicsCreate calculation in a table based on column from another tbale
Hi, I have two tables Table A and Table B which are joined by ID and have a many to one realtionship between A and B. I need to create a calculated column in Table A based on some columns from Table B. I tried using the RELATED function which is giving me the below error, even though there is a relationship: The column 'Table B[X]' either doesn't exist or doesn't have a relationship to any table available in the current context. Any assistance appreciated.554Views0likes3CommentsCreate new calculated table with multiple calculated column from 2 different tables with DAX
Hello, I am new to this. I need help to add new calculated table with multiple calculated column with DAX. I have 2 table as below: Table A: Date A List A 1/07/2020 Content A1 1/07/2020 Content A2 1/07/2020 Content A3 12/07/2020 Content A4 12/07/2020 Content A5 12/07/2020 Content A6 12/07/2020 Content A7 12/07/2020 Content A8 12/07/2020 Content A9 Table B: Date B List B 1/07/2020 Content B1 1/07/2020 Content B2 1/07/2020 Content B3 1/07/2020 Content B4 1/07/2020 Content B5 12/07/2020 Content B6 12/07/2020 Content B7 I would like to count the content in table A and table B based on date as follow: Date List A Count List B Count 1/07/2020 3 5 12/07/2020 6 2 How to do that? Thank you.Solved1.7KViews0likes4Comments