This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi all,
This should be quite straightforward, but I can't seem to be able to debug it yet...
I have a series of data called 'Opportunities' that are recorded in an excel spreadsheet.
| Opportunities |
| Opportunity 1 |
| Opportunity 2 |
| Opportunity 3 |
| Opportunity 4 ... |
Every week, we capture a snapshot of the list and assign a date in the 'Date Captured' column.
| Date Captured | Opportunities | Projects |
| 10/02/2022 | Opportunity 1 | Opportunity |
| 10/02/2022 | Opportunity 2 | Opportunity |
| 10/02/2022 | Opportunity 3 | Opportunity |
| 17/02/2022 | Opportunity 1 | Opportunity |
| 17/02/2022 | Opportunity 2 | Opportunity |
| 17/02/2022 | Opportunity 3 | Opportunity |
| 17/02/2022 | Opportunity 4 | Opportunity |
| 24/02/2022 | Opportunity 1 | Opportunity |
| 24/02/2022 | Opportunity 2 | Opportunity |
| 24/02/2022 | Opportunity 3 | Opportunity |
| 24/02/2022 | Opportunity 4 | Opportunity |
| 24/02/2022 | Opportunity 5 | Opportunity |
What I would like to have is a summary table with the latest number of opportunities (5), a dynamic table that shows the difference between the current/latest number of Opportunities and a previous date (selected using a slicer of the 'Date Captured'), and a table that shows the number of Opps for that previous date (3).
| Latest Date | Count |
| 24/02/2022 | 5 |
| Difference | 2 |
| Earlier Date | Count |
| 10/02/2022 | 3 |
I have written the following codes, but I keep getting 0s in the middle table (difference). Any help?
Step 1:
Opportunties_Count = CALCULATE (COUNT('Table'[Projects]),
Solved! Go to Solution.
Hi @Anonymous ,
I'm not sure what you want to achieve:
Do you want to compare the values between the LATEST day available in a table and a day you choose in a slicer?
If so:
LatestDateCount =
VAR LatestDate = MAXX ( ALL ( 'Table' ), 'Table'[Date Captured] )
VAR LatestDateCount = CALCULATE ( [Opportunties_Count], 'Table'[Date Captured] = LatestDate )
RETURN
LatestDateCount
EarlierDateCount =
VAR EarlierDate = SELECTEDVALUE ( 'Table'[Date Captured] )
VAR EarlierDateCount = CALCULATE ( [Opportunties_Count], 'Table'[Date Captured] = EarlierDate )
RETURN
EarlierDateCount
If this post helps, then please consider Accept it as the solution ✔️to help the other members find it more quickly.
If this post helps, then please considerAccept it as the solution to help the other members find it more quickly.
Appreciate your Kudos ![]()
Stand with Ukraine!
Thanks @ERD! That works exactly as I wanted. Seems like the main difference between my code and yours was the MAX vs MAXX. Good lesson learned!
Hi @Anonymous ,
I'm not sure what you want to achieve:
Do you want to compare the values between the LATEST day available in a table and a day you choose in a slicer?
If so:
LatestDateCount =
VAR LatestDate = MAXX ( ALL ( 'Table' ), 'Table'[Date Captured] )
VAR LatestDateCount = CALCULATE ( [Opportunties_Count], 'Table'[Date Captured] = LatestDate )
RETURN
LatestDateCount
EarlierDateCount =
VAR EarlierDate = SELECTEDVALUE ( 'Table'[Date Captured] )
VAR EarlierDateCount = CALCULATE ( [Opportunties_Count], 'Table'[Date Captured] = EarlierDate )
RETURN
EarlierDateCount
If this post helps, then please consider Accept it as the solution ✔️to help the other members find it more quickly.
If this post helps, then please considerAccept it as the solution to help the other members find it more quickly.
Appreciate your Kudos ![]()
Stand with Ukraine!
Many thanks @amitchandak
Your suggestion seems to work in principle, but doesn't seem to work when I use a slicer for the past date.
In such case, the middle comparison table gets the previous date values, and the bottom table (previous date values) becomes blank.
Not sure what's the problem...
@Anonymous , Try like
Opportunties_Count = CALCULATE (COUNT('Table'[Projects]),
FILTER('Table',[Projects]="Opportunity"))
Step 3:
LatestDateCount =
VAR LatestDate= MAXX (allseleceted('Table'), 'Table'[Date Captured] ) //or max('Table'[Date Captured])
VAR LatestDateCount= CALCULATE ( [Opportunities_Count],filter('Table', 'Table'[Date Captured] = LatestDate) )
RETURN CALCULATE(LatestDateCount)
Step 3:
EarlierDateCount =
VAR LatestDate= MAXX (allseleceted('Table'), 'Table'[Date Captured] )
VAR EarlierDate= MAXX (filter(allseleceted('Table'), 'Table'[Date Captured] < LatestDate), 'Table'[Date Captured] )
VAR EarlierDateCount= CALCULATE ( [Opportunities_Count],filter('Table', 'Table'[Date Captured] = EarlierDate) )
RETURN CALCULATE(EarlierDateCount)
Step 4:
Difference = LatestDateCount - EarlierDateCount
In case you want select a date and compare. better to have separate table date table, because you need all for EarlierDateCount
EarlierDateCount =
VAR LatestDate= MAXX (allseleceted('Date'), 'Date'[Date] )
VAR EarlierDate= calculate(MAX('Table'[Date Captured] ),filter(all('Date'), 'Date'[Date] < LatestDate))
VAR EarlierDateCount= CALCULATE ( [Opportunities_Count],filter(all('Date'), 'Date'[Date] = EarlierDate) )
RETURN CALCULATE(EarlierDateCount)
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.