Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi @DeEviloN ,
Could you tell me if my post helps you? If it is, kindly Accept it as the solution to make the thread closed. More people will benefit from it.
Best Regards,
Eyelyn Qin
Hi @DeEviloN ,
You could use Performance Analyzer to see and record logs that measure how each of your report elements performs when users interact with them, and which aspects of their performance are most (or least) resource intensive.
Refer to:Introducing the Power BI Performance Analyzer - SQLBI
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Норма анализа импорт =
" Норма анализа для "
& IF (
AND (
'Добавить1'[Изм. класс] = "Сред. категория риска",
'Добавить1'[Опред. металла] = "Au иностр."
|| 'Добавить1'[Опред. металла] = "Ag иностр."
),
"text_1",
IF (
AND (
'Добавить1'[Изм. класс] = "Выс. категория риска",
'Добавить1'[Опред. металла] = "Au иностр."
|| 'Добавить1'[Опред. металла] = "Ag иностр."
),
"text_2",
IF (
AND (
'Добавить1'[Изм. класс] = "Низ. категория риска",
'Добавить1'[Опред. металла] = "Au иностр."
|| 'Добавить1'[Опред. металла] = "Ag иностр."
),
"text_3",
"text error"
)
)
)
can be rewritten as
Норма анализа импорт =
" Норма анализа для "
& IF (
'Добавить1'[Опред. металла] = "Au иностр."
|| 'Добавить1'[Опред. металла] = "Ag иностр.",
SWITCH (
'Добавить1'[Изм. класс],
"Сред. категория риска", "text_1",
"Выс. категория риска", "text_2",
"Низ. категория риска", "text_3",
"text error"
),
"text error"
)
Your other measure fails to render at DAXformatter.com - they seem to not expect some of the cyrillic characters.
This part
RETURN
SWITCH (
TRUE (),
(
[Невыход в пробу ИТОГ] = "Н/В"
&& CALCULATE (
[Класс заявителя] = "Сред. категория риска",
PREVIOUSDAY ( 'Добавить1'[Дата выдачи] )
)
)
|| [Итог увелич. поступлений] = "Ув. в 2 и более раз"
|| [Итог увелич. поступлений] = "Ув. в 6 и более раз"
|| [Новый сдатчик] = "Новый заявитель"
|| [Опред н/д] = "Н/Д"
|| [Опред. ломб.] = "Ломбард", "Выс. категория риска",
is questionable. I think you may be missing a comparison target.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 64 | |
| 32 | |
| 31 | |
| 27 |