Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Anonymous
Not applicable

How i can see this in % ?

Hello All

It will be nice if i also receive a query for this. 

 

Sushma_1411_1-1646851466034.png

 

Thank you in advanced !

 

5 REPLIES 5
Anonymous
Not applicable

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] )
)
)

 

esha_shah2002_0-1647244428294.png

 

If this post helps, Accept this as a solution

 

Anonymous
Not applicable

Hello @Anonymous 

 

I will not have that values automatically. I want those all valuses automatic in different table.

 

like this 

Sushma_1411_0-1647246721953.png

 

 

 

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 !

v-zhangti
Community Support
Community Support

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)

vzhangti_0-1647237675401.png

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.

Anonymous
Not applicable

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 

Sushma_1411_0-1647243303899.png

 

 

Anonymous
Not applicable

In this Calculation i have Date as a Created_Date and Customer Id. 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.