Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have two Data tables - Table A and Table B. I want to calculate a column in Table A.
Q1: How do I set up the "Manage Relationships"?
Q2: What is the formula for the column called "Total" in order to achieve the below? When the Date in Table A is between or equal to the Start & End dates in Table, AND the Status is Active (not Archive), I want a sum for that date of the total amount
Solved! Go to Solution.
@DataUser , You can create a new column like
sumx(filter(table2, table1[Date] >= table2[start Date] && table[Date] <=table2[end date] && Table2[Status] = "Active"),Table[Amount])
I have discussed various way in this video : https://www.youtube.com/watch?v=czNHt7UXIe8
@DataUser , You can create a new column like
sumx(filter(table2, table1[Date] >= table2[start Date] && table[Date] <=table2[end date] && Table2[Status] = "Active"),Table[Amount])
I have discussed various way in this video : https://www.youtube.com/watch?v=czNHt7UXIe8
User | Count |
---|---|
76 | |
75 | |
46 | |
31 | |
27 |
User | Count |
---|---|
99 | |
91 | |
51 | |
49 | |
45 |