I'm building some analysis around Benford's law and am using the following code. This same code works just fine in another report. For some reason, I'm getting an error: "'CALCULATE' is not a function." and I can't find anything online that references this error. Any ideas?
Benford = var dig = 'Data'[TwoDigits] return IF(dig <> BLANK( ), CALCULATE(LOG10(1+1/dig)), BLANK( ))
Solved! Go to Solution.
That didn't help but introduced another error and now I think I know the issue: my data is direct query and some advanced measures (including the LOG10 function) aren't available in DQ.
That didn't help but introduced another error and now I think I know the issue: my data is direct query and some advanced measures (including the LOG10 function) aren't available in DQ.
@prodigypenguin , Strange.
Try like
Benford = var dig = 'Data'[TwoDigits] return IF(dig <> BLANK( ), LOG10(1+1/dig), BLANK())
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
216 | |
57 | |
49 | |
46 | |
45 |
User | Count |
---|---|
267 | |
211 | |
113 | |
82 | |
71 |