on 2014 Mar 19 2:49 PM
Hi Frzz,
I have below requirement in Calculated column with CASE statement. Could some one help me how to achieve this with case statement.
String = 0Hello
01Hello
012Hello
0123Hello
If 1st Character of the string is '0' then - 0Hello
1st 2 characters of the String is '01' - 22Hello
1st 3 characters of the String is '01' - 333Hello
1st 4 characters of the String is '01' - 4444Hello
Thank you.
Best Regards,
Krishna.
Request clarification before answering.
Hi everyone,
I've looked through the previous examples and think that mines is a bit different because it is an integer data type. Below is my statement. I am trying to create a calculated column based on ALERTID, for integers between 2051-2073 I want the text 'Turkish to be displayed', then for 1-2050 i want it text to be 'INIT'.
case("ALERTID",2051-2073,'TURKISH',1-2050,'INIT','NONE')
Can someone show me how this code should look? I don't get an error but I don't get the correct
results.
Thanks,
Connor Nelson
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Nelson,
The above scenario which you have mentioned using case might not use a particular range eg(1-2050),it is considered as a MINUS but for a range. So i have rewritten another code using "nested IF" statement.
if("ALERTID"<=2050,'INIT',if("ALERTID">2050,'TURKISH','NONE'))
Hope it is helpful.
Thanks,
Krishna
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.