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
Good day Everyone,
I had a problem to solve here , I want to get the count/number of renewed policy for this yr based or filtered by the productions last year. I had a sample data here:
Based on my sample I have transaction no which is corresponds on E-No per name. As you can see there are 3 OLD E-NO records that was came from the E-NO last yr. So if the TransactionNo has a Old E-No thats the count for Renewed thats whay I had 3 count for renewed.
Can anyone help me how to solve the logic behind it? Any advice would help. Thanks
@Anonymous
As I try the codes and measure you suggest, the TOTAL E-NO LAST YR was working , and about the RENEWED one the result is blank, I dont know why but Im investigating what is wrong with the codes, but yeah thanks the one measure is working I'll appreciate that. Thanks
Hi @RanHo ,
Please try measure as below.
TOTAL E-NO LAST YR =
CALCULATE (
COUNT ( 'Table'[TRANSACTION NO] ),
FILTER ( 'Table', YEAR ( 'Table'[ENTRY DATE] ) = YEAR ( TODAY () ) - 1 )
)RENEWED =
VAR _LASTYEAR_LIST =
CALCULATETABLE (
VALUES ( 'Table'[E-NO] ),
FILTER ( 'Table', YEAR ( 'Table'[ENTRY DATE] ) = YEAR ( TODAY () ) - 1 )
)
RETURN
CALCULATE (
COUNT ( 'Table'[TRANSACTION NO] ),
FILTER (
'Table',
YEAR ( 'Table'[ENTRY DATE] ) = YEAR ( TODAY () )
&& 'Table'[OLD E-NO] IN _LASTYEAR_LIST
)
)PERCENTAGE = DIVIDE([RENEWED],[TOTAL E-NO LAST YR])
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous thanks for reply, i will try this and give my feedback.
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!
| User | Count |
|---|---|
| 57 | |
| 44 | |
| 42 | |
| 21 | |
| 17 |
| User | Count |
|---|---|
| 183 | |
| 114 | |
| 93 | |
| 62 | |
| 45 |