March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello,
I'm running through a problem with the usage of VALUES function, which is exactly what this page (https://msdn.microsoft.com/en-us/library/ee634547.aspx) lists as a remark of the function: it is filtering my results, where I want it unfiltered. The page also says "To return all of the cities, regardless of existing filters, you must use the ALL function to remove filters from the table. The second example demonstrates use of ALL with VALUES.", but there is not a second example...
Is there any place where I could read about using the VALUES and ALL function together?
My code right now looks like this:
MédiasSemFiltro = SWITCH(VALUES('Ordem etapas'[Etapa]), "EM PROSPECÇÃO", 'CRM - Acompanhamento geral'[SFMédiaProspecção], "AGENDANDO VISITA", 'CRM - Acompanhamento geral'[SFMédiaAgendamento], "1ª VISITA", 'CRM - Acompanhamento geral'[SFMédia1Visita], "PROPOSTA", 'CRM - Acompanhamento geral'[SFMédiaProposta], "2ª VISITA", 'CRM - Acompanhamento geral'[SFMédia2Visita], "FECHAMENTO", 'CRM - Acompanhamento geral'[SFMédiaFechamento], "CADASTROS", 'CRM - Acompanhamento geral'[SFMédiaCadastros], "PROPOSTA DE COMPRA", 'CRM - Acompanhamento geral'[SFMédiaPropostaDeCompra], "FECHAMENTO", 'CRM - Acompanhamento geral'[SFMédiaFechamento], "CONCLUÍDO", 'CRM - Acompanhamento geral'[SFMédiaÚltimaFatura], "DESCONTINUADO", 'CRM - Acompanhamento geral'[SFMédiaDescontinuamento], BLANK())
I've also tried to use ALL and DISTINCT instead of VALUES, but they either return me this error "MdxScript(Model) (38, 61) A table of multiple values was supplied where a single value was expected." (in the case of ALL) or it keeps the filtered values (in the case of DISTINCT).
Could any of you enlighten me on this subject?
Best regards
Solved! Go to Solution.
If you are using a MEASURE...replace VALUES with SELECTEDVALUE
i.e.
MédiasSemFiltro = SWITCH ( SELECTEDVALUE ( 'Ordem etapas'[Etapa] ), "EM PROSPECÇÃO", 'CRM - Acompanhamento geral'[SFMédiaProspecção], "AGENDANDO VISITA", 'CRM - Acompanhamento geral'[SFMédiaAgendamento], "1ª VISITA", 'CRM - Acompanhamento geral'[SFMédia1Visita], "PROPOSTA", 'CRM - Acompanhamento geral'[SFMédiaProposta], "2ª VISITA", 'CRM - Acompanhamento geral'[SFMédia2Visita], "FECHAMENTO", 'CRM - Acompanhamento geral'[SFMédiaFechamento], "CADASTROS", 'CRM - Acompanhamento geral'[SFMédiaCadastros], "PROPOSTA DE COMPRA", 'CRM - Acompanhamento geral'[SFMédiaPropostaDeCompra], "FECHAMENTO", 'CRM - Acompanhamento geral'[SFMédiaFechamento], "CONCLUÍDO", 'CRM - Acompanhamento geral'[SFMédiaÚltimaFatura], "DESCONTINUADO", 'CRM - Acompanhamento geral'[SFMédiaDescontinuamento], BLANK () )
Hi @dhersz
If you are using a calculated column, you should NOT use VALUES or ALL at all.
MédiasSemFiltro = SWITCH ( 'Ordem etapas'[Etapa], "EM PROSPECÇÃO", 'CRM - Acompanhamento geral'[SFMédiaProspecção], "AGENDANDO VISITA", 'CRM - Acompanhamento geral'[SFMédiaAgendamento], "1ª VISITA", 'CRM - Acompanhamento geral'[SFMédia1Visita], "PROPOSTA", 'CRM - Acompanhamento geral'[SFMédiaProposta], "2ª VISITA", 'CRM - Acompanhamento geral'[SFMédia2Visita], "FECHAMENTO", 'CRM - Acompanhamento geral'[SFMédiaFechamento], "CADASTROS", 'CRM - Acompanhamento geral'[SFMédiaCadastros], "PROPOSTA DE COMPRA", 'CRM - Acompanhamento geral'[SFMédiaPropostaDeCompra], "FECHAMENTO", 'CRM - Acompanhamento geral'[SFMédiaFechamento], "CONCLUÍDO", 'CRM - Acompanhamento geral'[SFMédiaÚltimaFatura], "DESCONTINUADO", 'CRM - Acompanhamento geral'[SFMédiaDescontinuamento], BLANK () )
If you are using a MEASURE...replace VALUES with SELECTEDVALUE
i.e.
MédiasSemFiltro = SWITCH ( SELECTEDVALUE ( 'Ordem etapas'[Etapa] ), "EM PROSPECÇÃO", 'CRM - Acompanhamento geral'[SFMédiaProspecção], "AGENDANDO VISITA", 'CRM - Acompanhamento geral'[SFMédiaAgendamento], "1ª VISITA", 'CRM - Acompanhamento geral'[SFMédia1Visita], "PROPOSTA", 'CRM - Acompanhamento geral'[SFMédiaProposta], "2ª VISITA", 'CRM - Acompanhamento geral'[SFMédia2Visita], "FECHAMENTO", 'CRM - Acompanhamento geral'[SFMédiaFechamento], "CADASTROS", 'CRM - Acompanhamento geral'[SFMédiaCadastros], "PROPOSTA DE COMPRA", 'CRM - Acompanhamento geral'[SFMédiaPropostaDeCompra], "FECHAMENTO", 'CRM - Acompanhamento geral'[SFMédiaFechamento], "CONCLUÍDO", 'CRM - Acompanhamento geral'[SFMédiaÚltimaFatura], "DESCONTINUADO", 'CRM - Acompanhamento geral'[SFMédiaDescontinuamento], BLANK () )
That's exactly it... Thank you very much.
I was also calculating the measures like so:
Média1Visita = CALCULATE(AVERAGE('CRM - Acompanhamento geral'[Duração1Visita]))
So I changed to:
Média1Visita = CALCULATE(AVERAGE('CRM - Acompanhamento geral'[Duração1Visita]), ALLSELECTED('CRM - Acompanhamento geral'))
Which probably also helped
You can also use VALUES function in the MEASURE.. but then you would have to take care of the total row by adding "HASONEVALUE"
i.e. try
MédiasSemFiltro = IF ( HASONEVALUE ( 'Ordem etapas'[Etapa] ), SWITCH ( VALUES ( 'Ordem etapas'[Etapa] ), "EM PROSPECÇÃO", 'CRM - Acompanhamento geral'[SFMédiaProspecção], "AGENDANDO VISITA", 'CRM - Acompanhamento geral'[SFMédiaAgendamento], "1ª VISITA", 'CRM - Acompanhamento geral'[SFMédia1Visita], "PROPOSTA", 'CRM - Acompanhamento geral'[SFMédiaProposta], "2ª VISITA", 'CRM - Acompanhamento geral'[SFMédia2Visita], "FECHAMENTO", 'CRM - Acompanhamento geral'[SFMédiaFechamento], "CADASTROS", 'CRM - Acompanhamento geral'[SFMédiaCadastros], "PROPOSTA DE COMPRA", 'CRM - Acompanhamento geral'[SFMédiaPropostaDeCompra], "FECHAMENTO", 'CRM - Acompanhamento geral'[SFMédiaFechamento], "CONCLUÍDO", 'CRM - Acompanhamento geral'[SFMédiaÚltimaFatura], "DESCONTINUADO", 'CRM - Acompanhamento geral'[SFMédiaDescontinuamento], BLANK () ) )
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
86 | |
77 | |
57 | |
52 |
User | Count |
---|---|
201 | |
137 | |
108 | |
73 | |
68 |