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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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