Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi All,
I wish to calculate sales for 6 months and this should exclude sales from Jan. This should also be dynamic ie in August we should exclude Jan and Feb.
Heres the formula I've used but its not worked
| Year-Mon | 6mth Total Sales (Desired) | 6mth Total Sales (current output) |
| 23-Jan | $1,265.18 | |
| 23-Feb | $1,576.41 | $1,576.41 |
| 23-Mar | $836.15 | $836.15 |
| 23-Apr | $2,888.95 | $2,888.95 |
| 23-May | $893.56 | $893.56 |
| 23-Jun | $2,075.89 | $2,075.89 |
| 23-Jul | $222.60 | $222.60 |
Solved! Go to Solution.
@mm456 Try this
6 Month Sales =
VAR _result =
SUMX (
KEEPFILTERS (
DATESINPERIOD (
CalendarDate[Date],
TODAY (),
-6,
MONTH
)
),
[Total Sales]
)
RETURN
_result
@mm456 Try this
6 Month Sales =
VAR _result =
SUMX (
KEEPFILTERS (
DATESINPERIOD (
CalendarDate[Date],
TODAY (),
-6,
MONTH
)
),
[Total Sales]
)
RETURN
_result
hI @mm456 ,
Try the following formula:-
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |