Daily DAX : Day 68 INFO.ATTRIBUTEHIERARCHIES
This is a meta data DAX function that returns a table with attribute information about Hierarchies in your dimension
Syntax: INFO.ATTRIBUTEHIERARCHIES(<Dimension>)
<Dimension> is a reference to a dimension table in your data model.
Return Value: This function returns a table with columns for each attribute hierarchy in the specified dimension. The table includes:
AttributeHierarchyID: A unique identifier for the attribute hierarchy.
AttributeHierarchyName: The name of the attribute hierarchy.
AttributeHierarchyDefaultMember: The default member for the attribute hierarchy, if defined.
AttributeHierarchyOrdered: A boolean indicating whether the hierarchy is ordered.
AttributeHierarchyIsVisible: A boolean indicating if the hierarchy is visible in the user interface.
Comments
Post a Comment