Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello,
We have tickers for which we receive prices from multiple vendors on a daily basis.
i.e. We receive prices from 4 vendors for ticker ABC.
We would like to show the difference (actual and as a %) between the different data sources in a matrix.
Should display the difference between current record and record to the left. So, for Ticker ABC - would show difference between Bloomberg and IDC in column IDC.
Bascially want to make this dynamic so if user chooses only 2 pricing sources it will calculate the difference between those two. But, if three are chosen then if will show the difference between 1 and 2 -- then 2 and 3.
Basically want this to work like Tableau (not trying to promote Tableau -- just wanted to show example of how it should work)
Assuming some way to do this in DAX? Changed quick measures and couldn't find anything relevant.
Thanks,
Dan
Solved! Go to Solution.
Hi @dancarr22,
Index column is a custom column I created in query edit.
Since power bi data model not contains column index and row index, you need one index to let formula calculation dynamic based on current index.(such current -1 or current +1)
Date or numeric column can be used as index, text character current not support compare with math symbols.
If you only need to calculate on specific source, you can try to use switch function to define them as specific numeric as calculation index.
Regards,
Xiaoxin Sheng
HI @dancarr22,
I think you need to add index column based on 'pricing source' column to let formula dynamic.
Sample formula:
Diff = VAR currIndex = MAX ( Table3[Index] ) VAR currPrice = CALCULATE ( SUM ( Table3[Price] ), FILTER ( ALLSELECTED ( Table3 ), Table3[Index] = currIndex ), VALUES ( Table3[Ticker] ), VALUES ( Table3[Date] ) ) VAR prevPrice = CALCULATE ( SUM ( Table3[Price] ), FILTER ( ALLSELECTED ( Table3 ), Table3[Index] = currIndex - 1 ), VALUES ( Table3[Ticker] ), VALUES ( Table3[Date] ) ) RETURN IF ( prevPrice <> BLANK (), currPrice - prevPrice, currPrice )
Regards,
Xiaoxin Sheng
Hi Xiaoxin,
Thanks for your assistance with this.
Unfortunately, the solution you provided did not work.
Issue appears to be in the index logic. while we do have indexes associated with the price source they are not in strict numerical order. Instead of using "currIndex - 1" is there some other way to define the selected indexes?
If not, can you just provide an example where we do price source 'Bloomberg' vs price source 'Reuters'? Not the optimal dynamic solution but can go with this for now.
Thanks,
Dan
Hi @dancarr22,
Index column is a custom column I created in query edit.
Since power bi data model not contains column index and row index, you need one index to let formula calculation dynamic based on current index.(such current -1 or current +1)
Date or numeric column can be used as index, text character current not support compare with math symbols.
If you only need to calculate on specific source, you can try to use switch function to define them as specific numeric as calculation index.
Regards,
Xiaoxin Sheng
Thanks Xiaoxin
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
65 | |
63 | |
52 | |
37 | |
36 |
User | Count |
---|---|
82 | |
66 | |
61 | |
46 | |
45 |