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
It will be nice if i also receive a query for this.

Thank you in advanced !
hi
create a new table with the following dax code
Table 2 =
SELECTCOLUMNS (
'Table',
"Date", 'Table'[Date],
"01 August 2021",
DIVIDE (
'Table'[01 August 2021],
MAX ( 'Table'[01 August 2021] )
),
"01 September 2021",
DIVIDE (
'Table'[01 September 2021],
MAX ( 'Table'[01 September 2021] )
),
"01 October 2021",
DIVIDE (
'Table'[01 October 2021],
MAX ( 'Table'[01 October 2021] )
)
)
If this post helps, Accept this as a solution
Hello @Anonymous
I will not have that values automatically. I want those all valuses automatic in different table.
like this

Right now i have Date as Created_Date and also Player_Id. Based on that i need that Count which is there in first tabel 136 and so on...
And percentaion based on that count and both should have in different table.
Thank you !
Hi, @Anonymous
You can try the following methods.
Column:
% 1 =
Var _1=CALCULATE(SUM('Table'[01 August 2021]),FILTER('Table',[Actaul Date]=MIN('Table'[Actaul Date])))
Var _2=CALCULATE(SUM('Table'[01 August 2021]),FILTER('Table',[Actaul Date]=EARLIER('Table'[Actaul Date])))
Return
DIVIDE(_2,_1)
Is this the result you were expecting?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello Thank you for your reply ,
I as saw the result but now i always have to calculate the % 1, % 2 and so on... manually
I will not have values automatically. I want those all valuses automatic in different table.
like this

In this Calculation i have Date as a Created_Date and Customer Id.
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 |
|---|---|
| 58 | |
| 45 | |
| 42 | |
| 20 | |
| 18 |
| User | Count |
|---|---|
| 172 | |
| 110 | |
| 91 | |
| 55 | |
| 45 |