The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 result it brings me a duplicate, I don't know how to fix the measure to disregard the duplicates.
Solved! Go to Solution.
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
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
it worked, thank you very much🙂
User | Count |
---|---|
5 | |
3 | |
3 | |
2 | |
1 |
User | Count |
---|---|
11 | |
7 | |
5 | |
5 | |
4 |