Forum Discussion
CAVCX
3 years agoFrequent Visitor
Problem consolidating across tables
Hello, I have two tables in a form as below. TABLE A - HAS A SINGLE ROW FOR EACH ACCOUNT ID/CUSTOMER NAME TABLE B - SHOWS PROJECTS MADE BY ANY ACCOUNT WITH EACH ROW BEING A DI...
- 3 years ago
Hi, CAVCX
You can try the following methods.
Total_Projects = CALCULATE(COUNT('Table B'[Account ID]),FILTER('Table B',[Account ID]=EARLIER('Table A'[Account ID])))Video_Project = CALCULATE(SUM('Table B'[Video]),FILTER('Table B',[Account ID]=EARLIER('Table A'[Account ID])))Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-zhangti
3 years agoCommunity Support
Hi, CAVCX
You can try the following methods.
Total_Projects = CALCULATE(COUNT('Table B'[Account ID]),FILTER('Table B',[Account ID]=EARLIER('Table A'[Account ID])))Video_Project = CALCULATE(SUM('Table B'[Video]),FILTER('Table B',[Account ID]=EARLIER('Table A'[Account ID])))
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
CAVCX
3 years agoFrequent Visitor
Thank You. It seems to solve the issue. I will verify the data through sampling just to be sure.