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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Hamdan1234
Helper III
Helper III

DAX Function

I have column X ,column Y and Date column. I want

 X/Y = Spread

(X/Y)/(First date of (X/Y))-1="A"

(X/Y)/(First date of (X/Y))-1-(Sum of Previous "A")

I am attaching my data table. Kindly help.

Thanks

DateXY
12/01/202198170
28/02/202178189
22/11/202165123
04/11/202123143
1 ACCEPTED SOLUTION
v-eqin-msft
Community Support
Community Support

Hi @Hamdan1234 ,

 

Please try:

Spread = [X]/[Y] 
A = 
var _firstdate=CALCULATE( FIRSTDATE('Table'[Date]),ALL('Table'))
return [Spread] / CALCULATE(MAX('Table'[Spread]),FILTER('Table',[Date]=_firstdate)) -1
B = 
var _sumofpre=CALCULATE(SUM('Table'[A]),FILTER('Table',[Date]<=EARLIER('Table'[Date])))
return [A] -_sumofpre 

 

 Output:

Eyelyn9_0-1638859498331.png

 

Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-eqin-msft
Community Support
Community Support

Hi @Hamdan1234 ,

 

Please try:

Spread = [X]/[Y] 
A = 
var _firstdate=CALCULATE( FIRSTDATE('Table'[Date]),ALL('Table'))
return [Spread] / CALCULATE(MAX('Table'[Spread]),FILTER('Table',[Date]=_firstdate)) -1
B = 
var _sumofpre=CALCULATE(SUM('Table'[A]),FILTER('Table',[Date]<=EARLIER('Table'[Date])))
return [A] -_sumofpre 

 

 Output:

Eyelyn9_0-1638859498331.png

 

Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Hamdan1234 ,Can you share sample  output in table format?

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.