Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi All,
Please can you help in converting this MDX Calculated Measure to DAX Calculated Measure:
MDX:
SELECT
non empty{([Measures].[Gross Usage Revenue])} ON COLUMNS ,
non empty
{
(
[Country].[Country Code].[Country Code],
[Service Type].[Service Type].[Service Type],
[Call Type].[Category].[Category],
[Call Type].[Sub Category].[Sub Category],
[Telecom Area].[Telecom Area].[Telecom Area],
[Telecom Area].[Telecom Operator Name].[Telecom Operator Name],
[Event Direction].[Event Direction Code].[Event Direction Code],
[Product].[Product ID].[Product ID]
)
}
ON ROWS
FROM [Model]
where
{
[Calendar].[Date].&[2022-10-01T00:00:00]
}