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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
sreeprasad
Regular Visitor

Need help to create a DAX query for a column

Hi,

 

I have a table with few columns. I want to create a column by checking check whethere the shop is "ADD_TO_CART" THEN Number, when shop is "PRODUCT_VIEW" THEN the Number of ADD_TO_CART- Number of PRODUCT_VIEW, WHEN shop is "CHECKOUT"  THEN the Number of PRODUCT_VIEW- Number of CHECKOUT. Could anyone please help me on this?

Capture1.PNG

 

 

1 ACCEPTED SOLUTION
v-danhe-msft
Microsoft Employee
Microsoft Employee

Hi @sreeprasad,

Based on my test, you could refer to below formula:

Column = IF([Shop]="PRODUCT_VIEW",
    CALCULATE(SUM(Table1[Number]),FILTER('Table1','Table1'[Shop]="ADD_TO_CART"&&'Table1'[Date]=EARLIER(Table1[Date])))-CALCULATE(SUM(Table1[Number]),FILTER('Table1','Table1'[Shop]="PRODUCT_VIEW"&&'Table1'[Date]=EARLIER(Table1[Date]))),
         IF([Shop]="CHECKOUT",
             CALCULATE(SUM(Table1[Number]),FILTER('Table1','Table1'[Shop]="PRODUCT_VIEW"&&'Table1'[Date]=EARLIER(Table1[Date])))-CALCULATE(SUM(Table1[Number]),FILTER('Table1','Table1'[Shop]="CHECKOUT"&&'Table1'[Date]=EARLIER(Table1[Date])))
             ,[Number]))

Result:

1.PNG

You could also download the pbix file to have a view:

https://www.dropbox.com/s/3jw6hqb5o4ib8uh/Need%20help%20to%20create%20a%20DAX%20query%20for%20a%20co...

 

Regards,

Daniel He

 

Community Support Team _ Daniel He
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

1 REPLY 1
v-danhe-msft
Microsoft Employee
Microsoft Employee

Hi @sreeprasad,

Based on my test, you could refer to below formula:

Column = IF([Shop]="PRODUCT_VIEW",
    CALCULATE(SUM(Table1[Number]),FILTER('Table1','Table1'[Shop]="ADD_TO_CART"&&'Table1'[Date]=EARLIER(Table1[Date])))-CALCULATE(SUM(Table1[Number]),FILTER('Table1','Table1'[Shop]="PRODUCT_VIEW"&&'Table1'[Date]=EARLIER(Table1[Date]))),
         IF([Shop]="CHECKOUT",
             CALCULATE(SUM(Table1[Number]),FILTER('Table1','Table1'[Shop]="PRODUCT_VIEW"&&'Table1'[Date]=EARLIER(Table1[Date])))-CALCULATE(SUM(Table1[Number]),FILTER('Table1','Table1'[Shop]="CHECKOUT"&&'Table1'[Date]=EARLIER(Table1[Date])))
             ,[Number]))

Result:

1.PNG

You could also download the pbix file to have a view:

https://www.dropbox.com/s/3jw6hqb5o4ib8uh/Need%20help%20to%20create%20a%20DAX%20query%20for%20a%20co...

 

Regards,

Daniel He

 

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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.