Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I need a procentage measure which a specific row is the bases.
| Namefield | Amount | % Measure | 
| Over | 150000 | 591% | 
| Target | 25366 | 100% | 
| Actual 1 | 15000 | 59% | 
| Actual 2 | 16555 | 65% | 
| Actual 3 | 22555 | 89% | 
Target should allways be 100%. Numbers can change! The column % Measure is the result.
Solved! Go to Solution.
Hi,
Thank you for your message.
Please try something like below.
Target measure: =
VAR _target =
    CALCULATE (
        SUM ( Data[Amount] ),
        FILTER ( ALL ( Data[Namefield], Data[Amount] ), Data[Namefield] = "Target" )
    )
RETURN
    _target
					
				
			
			
				Hi,
Please check the below picture and the attached pbix file.
It is for creating a calculated measure.
Percent measure: =
VAR _target =
    CALCULATE (
        SUM ( Data[Amount] ),
        FILTER ( ALL ( Data[Namefield], Data[Amount] ), Data[Namefield] = "Target" )
    )
RETURN
    IF ( HASONEVALUE ( Data[Namefield] ), DIVIDE ( SUM ( Data[Amount] ), _target ) )
					
				
			
			
				Thx for response. How do I create another coulmn that shows the target Amount in each row like this:
| Namefield | Amount | % Measure | Target | 
| Over | 150000 | 591% | 25366 | 
| Target | 25366 | 100% | 25366 | 
| Actual 1 | 15000 | 59% | 25366 | 
| Actual 2 | 16555 | 65% | 25366 | 
| Actual 3 | 22555 | 89% | 25366 | 
Hi,
Thank you for your message.
Please try something like below.
Target measure: =
VAR _target =
    CALCULATE (
        SUM ( Data[Amount] ),
        FILTER ( ALL ( Data[Namefield], Data[Amount] ), Data[Namefield] = "Target" )
    )
RETURN
    _target
					
				
			
			
				Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.