Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hello,
I'd like to create a custom column in PowerBI with the below formula :
Trim_ContractDate = IF(DOSSIER_PA[Année_ContractDate]<>"","T" &""& FORMAT(DOSSIER_PA[Contract_Date],"Q","" ))
but it returns #error as you can see below.
Solved! Go to Solution.
@FranckGbadamass try this
Trim_ContractDate=
IF (
DOSSIER_PA[Année_ContractDate] <> BLANK (),
"T" & ""
& FORMAT ( DOSSIER_PA[Contract_Date], "Q", "" )
)
@FranckGbadamass try this
Trim_ContractDate=
IF (
DOSSIER_PA[Année_ContractDate] <> BLANK (),
"T" & ""
& FORMAT ( DOSSIER_PA[Contract_Date], "Q", "" )
)
@FranckGbadamass , Try like
Trim_ContractDate = IF(DOSSIER_PA[Année_ContractDate]<>"","T" &""& FORMAT(DOSSIER_PA[Contract_Date],"Q"),"" )
User | Count |
---|---|
84 | |
76 | |
74 | |
49 | |
39 |
User | Count |
---|---|
114 | |
56 | |
51 | |
42 | |
42 |