Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hello,
I have the below table and want to find out the percentage of reviews attended when they are not light touch.
So if there is a review date, it was attended and was not a light review = Percent attended.
Any help would be appreciated,
thanks
| Review Date | Attended | Light review | Percent attended |
| 01/01/2023 | Yes | Yes | 50% |
| 02/01/2023 | Yes | No | |
| 03/01/2023 | No | No | |
| 04/01/2023 | Yes | No |
Solved! Go to Solution.
Hi @WJ876400 ,
Here are the steps you can follow:
1. Create calculated column.
Percent attended =
var _countFlag=
COUNTX(
FILTER(ALL('Table'),
'Table'[Attended]="Yes"&&'Table'[Light review]="No"),[Review Date])
var _countall=
COUNTX(ALL('Table'),[Review Date])
return
DIVIDE(
_countFlag,_countall)Flag =
IF(
'Table'[Review Date]=MINX(ALL('Table'),[Review Date]),
[Percent attended],BLANK())
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @WJ876400 ,
Here are the steps you can follow:
1. Create calculated column.
Percent attended =
var _countFlag=
COUNTX(
FILTER(ALL('Table'),
'Table'[Attended]="Yes"&&'Table'[Light review]="No"),[Review Date])
var _countall=
COUNTX(ALL('Table'),[Review Date])
return
DIVIDE(
_countFlag,_countall)Flag =
IF(
'Table'[Review Date]=MINX(ALL('Table'),[Review Date]),
[Percent attended],BLANK())
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 25 | |
| 24 | |
| 16 |
| User | Count |
|---|---|
| 48 | |
| 32 | |
| 17 | |
| 16 | |
| 16 |