Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 826 Bytes

error-mdx.md

File metadata and controls

43 lines (29 loc) · 826 Bytes
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic ms.custom
Error (MDX)
Error (MDX)
kfollis
kfollis
kfollis
02/17/2022
sql
analysis-services
reference
mdx

Error (MDX)

Raises an error, optionally providing a specified error message.

Syntax

  
Error( [ Error_Text ] )  

Arguments

Error_Text
A valid string expression containing the error message to be returned.

Examples

The following query shows how to use the Error function inside a calculated measure:

WITH MEMBER MEASURES.ERRORDEMO AS ERROR("THIS IS AN ERROR")

SELECT

MEASURES.ERRORDEMO ON 0

FROM [Adventure Works]

See Also

MDX Function Reference (MDX)