Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I have the following measure that occasionally throws an error I believe to be associated with the Today().
CurA =
AverageX(
CALCULATETABLE(
'FACT_PROD_CUM_VW',
FACT_PROD_CUM_VW[Prod Date] < DATE(YEAR(TODAY()),MONTH(TODAY()),DAY(TODAY())-2), FACT_PROD_CUM_VW[Prod Date] > DATE(YEAR(TODAY()),MONTH(TODAY()),DAY(TODAY())-8)
),
[Gross Oil]
)
Error message:
Feedback Type:
Frown (Error)
Timestamp:
2020-12-02T13:50:52.7737492Z
Local Time:
2020-12-02T06:50:52.7737492-07:00
Session ID:
1a828dce-0c42-46c5-b822-16998c6ff77c
Release:
October 2020
Product Version:
2.86.727.0 (20.10) (x64)
Error Message:
MdxScript(Model) (35, 40) Calculation error in measure 'FACT_PROD_CUM_VW'[CurA]: An argument of function 'DATE' has the wrong data type or the result is too large or too small.
Solved! Go to Solution.
@judddonnelly , When you subract days from date , like this DATE(YEAR(TODAY()),MONTH(TODAY()),DAY(TODAY())-8)
On the 8th on month this will error as date do not take 0 in day .
Try like DATE(YEAR(TODAY()),MONTH(TODAY()),DAY(TODAY())) -8
I have logged an issue sometime back on this.
@judddonnelly , When you subract days from date , like this DATE(YEAR(TODAY()),MONTH(TODAY()),DAY(TODAY())-8)
On the 8th on month this will error as date do not take 0 in day .
Try like DATE(YEAR(TODAY()),MONTH(TODAY()),DAY(TODAY())) -8
I have logged an issue sometime back on this.
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
10 |
User | Count |
---|---|
19 | |
16 | |
14 | |
11 | |
9 |