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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello All,
i have 2 columns - Status 1 and application
Status 1 column have texts - Green, Red, Yellow
Application column have 2 fields - Yes, No
i need to create measure of - Sum of total application - sum of Red and then sum of Yes /(devide) by total
Solved! Go to Solution.
Hi @bhavsar08,
According to my understanding of your request I build this sample data:
With this data table I wrote this measures:
Sum Application = SUM(f_data[Value])
Sum Red =
CALCULATE(
[Sum Application],
FILTER(
ALLSELECTED(f_data),
f_data[Status] = "RED"
)
)
Sum Yes =
CALCULATE(
[Sum Application],
FILTER(
ALLSELECTED(f_data),
f_data[Application] = "Yes"
)
)
Total Applications =
CALCULATE(
[Sum Application],
ALL(f_data)
)
% Yes = DIVIDE([Sum Yes], [Total Applications])
The final output was this:
Proud to be a Super User!
Hi @bhavsar08,
According to my understanding of your request I build this sample data:
With this data table I wrote this measures:
Sum Application = SUM(f_data[Value])
Sum Red =
CALCULATE(
[Sum Application],
FILTER(
ALLSELECTED(f_data),
f_data[Status] = "RED"
)
)
Sum Yes =
CALCULATE(
[Sum Application],
FILTER(
ALLSELECTED(f_data),
f_data[Application] = "Yes"
)
)
Total Applications =
CALCULATE(
[Sum Application],
ALL(f_data)
)
% Yes = DIVIDE([Sum Yes], [Total Applications])
The final output was this:
Proud to be a Super User!
Hi @bhavsar08,
Could you please provide some data and the expectec output?
Proud to be a Super User!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!