customer
4 TopicsDynamic combined customer and product 8020 analysis
Hi, Im wanting to create a dynamic measure to analyse which "A" customers bought which "A" products and so on. Must be dynamic, to use the page filters I have. Analysis to spit out: 1) sum of sales for A customer purchasing A product, also AB, BA, BB, etc 2) number of customer (and products) in AA, AB, etc 3) which customers / products in AA, AB etc Data set is transaction order history, so includes customer name / code, product name / code and sale date. Can someone please help as my DAX is not at this level, assume it needs to be done in virtual tables then bringing together?3KViews0likes12CommentsCount Customers aggregately based on their latest status change on a monthly basis
Hi guys, i have this table of customers (Contact Id) with all their status changes along their way on a monthly basis: i wish to calculate by measures the number of customers for each status for each month, which means the latest status available should be considered and calculated until next status change. once a customer has its first change, he should be calculated until current month. There is a table to present what i mean (but in columns. not measures): thanks in advance, AmitSolved995Views0likes4CommentsPulling data in from multiple fact tables for Top 20 customers
Hi, I am trying to retrieve a list of Top 20 customers based on the actual sales, and then capture the figures from three different fact tables for these 20 customers (these are three separate cubes from SAP BW). The output I am looking for is shown below: Please, note that in the data model there are no direct relationships between the fact tables. Any tip/suggestion would be much appreciated. Thank you. Fact Table 1 Fact Table 1 Fact Table 1 Fact Table 2 Fact Table 3 Customer Sales 2019 Sales 2020 Sales 2021 Bonuses 2021 Forecast 2023 A 500 500 500 200 700 B 400 400 400 200 600 C 300 300 300 200 800 Etc. 200 200 200 200 600Solved881Views0likes3CommentsDAX - Measure for customers who never bought, but started buying in the last 2 months
Good afternoon, I need some help. I need to create an invoice count measure for customers who have never purchased and have purchased in the last two months. I have the two measurements below: Bimonthly order frequency = CALCULATE(DISTINCTCOUNT(SBOPRODMS[Customer]),and(SBOPRODMS[invoice date]>=TODAY()-60,SBOPRODMS[document]="outgoing invoice")) Total customers = CALCULATE(DISTINCTCOUNT(SBOPRODMS[Customer]),and(SBOPRODMS[invoice date]>=TODAY()-365,SBOPRODMS[document]="outgoing invoice"))Solved2.7KViews0likes12Comments