The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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?
Solved! Go to Solution.
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:
You could also download the pbix file to have a view:
Regards,
Daniel He
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:
You could also download the pbix file to have a view:
Regards,
Daniel He
User | Count |
---|---|
77 | |
75 | |
36 | |
31 | |
29 |
User | Count |
---|---|
94 | |
80 | |
55 | |
48 | |
48 |