Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
The column is MVT_Source in a table called movement and it is like below, what i need is to ADD Column or measure that counts how many GT rows and another measure for how many Rite rows. Finally a measure that will give me the % of dividing number of GT rows by the total number of rows.
MVT_Source |
GT |
GT |
GT |
Rite |
Rite |
GT |
Rite |
Rite |
GT |
Solved! Go to Solution.
Hi @Anonymous
try measures
GT rows = CALCULATE(COUNTROWS('TableMovement'), 'TableMovement'[MVT_Source] = "GT" )
Rite rows = CALCULATE(COUNTROWS('TableMovement'), 'TableMovement'[MVT_Source] = "Rite" )
and then
GT rows % = DIVIDE([GT rows], CALCULATE(COUNTROWS('TableMovement')) )
Hi @Anonymous
try measures
GT rows = CALCULATE(COUNTROWS('TableMovement'), 'TableMovement'[MVT_Source] = "GT" )
Rite rows = CALCULATE(COUNTROWS('TableMovement'), 'TableMovement'[MVT_Source] = "Rite" )
and then
GT rows % = DIVIDE([GT rows], CALCULATE(COUNTROWS('TableMovement')) )
Great! worked for me appreciate your great help .
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
13 | |
11 | |
9 | |
8 | |
8 |