Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hello,
I want to use this formula in Power Pivot 2016. Is that possible?
Thank you in advance! Kind regards Marcel
ScopeCurrentLevel =
@marsclone
Agree with @edhans , ISINSCOPE and COALESCE are not available in Power Pivot, you will have to use other functions to accomplish the same
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
No. ISINSCOPE is relatively new, and Power Pivot hasn't had a new function since TREATAS was added in 2016 I think.
You'll have to use the older method of a combination of HASONEVALUE(), HASONEFILTER(), and/or ISFILTERED()
They will accomplish the same thing, but as you can see in Power BI, ISINSCOPE is much easier to use.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingIt depends @marsclone - it isn't a simple swap. We'd have to see your report, your filter context, and the expected result.
COALESCE is easy though -
IF(
ISBLANK(Something),
0,
ISBLANK(Something)
)
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI Reporting