The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I have ORDERS, which have LINES, which can have one or more ERRORS.
Those ERRORS can be ADDRESSABLE, or not.
I'm trying to write a measure that returns LINES WITH ONLY ADDRESSABLE ERRORS.
I can write for ADDRESSABLE_LINE_ERRORS and NON-ADDRESSABLE_LINE_ERRORS--but these are totals…I need to know where all LINES in the ORDER are all ADDRESSABLE.
I'm also trying to do this in a dual-storage/DirectQuery model.
Here's a PBIX: https://drive.google.com/file/d/1tU89i4yzGdNehhxm4j-ySvmCsMIJ9AVC/view?usp=sharing
Solved! Go to Solution.
Expertise = List.Accumulate( {Days as from Today}, {Skills and Knowledge}, (Current, Everyday) => Current & Day.LeanAndPractise(Everyday) ) |
Expertise = List.Accumulate( {Days as from Today}, {Skills and Knowledge}, (Current, Everyday) => Current & Day.LeanAndPractise(Everyday) ) |
Well, it's working great with my Import tables, but with my dual-storage/DirectQuery tables, I'm getting this error:
I may have to move this calcuation upstream to the DB.
Two things helped this:
Very cool, thanks!
I was able to adapt to this measure to give me Lines with only addressable errors:
__ADDRESSABLE_LINES = CALCULATE(
[__LINES],
ERRORS[IS_ADDRESSABLE],
LINE_ERRORS
)
EDIT: I was seeing false positives with the above, so created these instead:
__LINE_HAS_ONLY_ADDRESSABLE_ERRORS = CALCULATE(
ISEMPTY( ERRORS ),
NOT ERRORS[IS_ADDRESSABLE],
LINE_ERRORS
)
__NON-ADDRESSABLE_LINES = CALCULATE(
[__LINES],
NOT ERRORS[IS_ADDRESSABLE],
LINE_ERRORS
)
and then the measure I ultimately need:
__ADDRESSABLE_LINES = [__LINES] - [__NON-ADDRESSABLE_LINES]
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
21 | |
20 | |
17 | |
15 | |
13 |
User | Count |
---|---|
42 | |
36 | |
25 | |
22 | |
18 |