Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I have a table A:
ID AGEMO BINDER
1 1 0
2 1 1
3 6 0
4 8 0
8 21 0
and I created a second table (TABLE B) from the following command:
Solved! Go to Solution.
Hi @MackenzieGENUS ,
First of all, many thanks to @vicky_ for your very quick and effective replies, and I will give some additions below:
1.Create the simple table.
2.Use the distinct dax to create the Table B.
Table B = distinct('Table'[AGEMO])
3.Create the relationship between the Table and Table B.
4.Create the new column to count the ID from Table.
COUNT ID = CALCULATE(COUNTROWS('Table'), 'Table'[BINDER] = 0)
5.Drag the column into the table visual. The result is shown below.
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @MackenzieGENUS ,
First of all, many thanks to @vicky_ for your very quick and effective replies, and I will give some additions below:
1.Create the simple table.
2.Use the distinct dax to create the Table B.
Table B = distinct('Table'[AGEMO])
3.Create the relationship between the Table and Table B.
4.Create the new column to count the ID from Table.
COUNT ID = CALCULATE(COUNTROWS('Table'), 'Table'[BINDER] = 0)
5.Drag the column into the table visual. The result is shown below.
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If you haven't created a relationship between table A and table B, then that will happen.
I would also suggest just creating the table with the countID column already included -
try changing your table constructor to something like:
ID Target = ADDCOLUMNS(distinct('Table A'[AGEMO]), "COUNT ID", CALCULATE(COUNTROWS('Table A'), TABLE A'[BINDER]=0))
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
11 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
12 | |
11 | |
11 | |
11 |