Forum Discussion
Improve the data loading performance of table visual
IzuruWi Have you checked visuals/query performance through Performance analyzer or DAX studio?? It can give you a fair idea about the visual performance that takes most time to load.
AbbasG I have checked those and found it was were OK. But still the issue is same..
- AbbasG3 years agoMemorable Member
IzuruWi can you share sample data or pbix after removing the sensitive information?
- IzuruWi3 years agoFrequent Visitor
Hi AbbasG I found this dax causes some sort of a performance issue for the visualization. Can you please guide me to improve this dax?
SWITCH (
TRUE (),
CONTAINS (
DIM_ANALYTIC_STRUCT_ACCOUNT,
DIM_ANALYTIC_STRUCT_ACCOUNT[STRUCTURE_NODE (groups)], "1 - CURRENT ASSETS"
), SUM ( FACT_CONSOL_BALANCE_OL[BALANCE] ),
CONTAINS (
DIM_ANALYTIC_STRUCT_ACCOUNT,
DIM_ANALYTIC_STRUCT_ACCOUNT[STRUCTURE_NODE (groups)], "2 - NON - CURRENT ASSETS"
), SUM ( FACT_CONSOL_BALANCE_OL[BALANCE] ),
SUM ( FACT_CONSOL_BALANCE_OL[BALANCE] ) * -1
)