Forum Discussion
Spotto
4 years agoHelper IV
How to ignore CONCATENATEX duplicates
hello everyone, I need some help, I'm making a measurement in a direct query table using CONCATENATEX. The measure I put it to not bring the blank fields but the problem is that when I put the resul...
- Anonymous4 years ago
Hi Spotto ,
You can update the formula of measure [Nr Salesforce Reverso] as below to get it:
Nr Salesforce Reverso =VAR nrsalesrev =CONCATENATEX (FILTER (VALUES ( 'gdp tb_Pagamento_Contrato'[SalesForce_Reverso] ),'gdp tb_Pagamento_Contrato'[SalesForce_Reverso] <> BLANK ()),'gdp tb_Pagamento_Contrato'[SalesForce_Reverso],", ")RETURNnrsalesrevBest Regards
Anonymous
4 years agoNot applicable
Hi Spotto ,
You can update the formula of measure [Nr Salesforce Reverso] as below to get it:
|
Nr Salesforce Reverso =
VAR nrsalesrev =
CONCATENATEX (
FILTER (
VALUES ( 'gdp tb_Pagamento_Contrato'[SalesForce_Reverso] ),
'gdp tb_Pagamento_Contrato'[SalesForce_Reverso] <> BLANK ()
),
'gdp tb_Pagamento_Contrato'[SalesForce_Reverso],
", "
)
RETURN
nrsalesrev
|
Best Regards
- Spotto4 years agoHelper IV
it worked, thank you very much🙂