Concatenate with Zero

Hello,

I am attempting to make a formula with concatenate that only includes a zero sometimes. I have been trying to practice and look at examples but I cant seem to get it right.

For example, this is my Virtual Column formula;

CONCATENATE([Show], " - ","s","0",[Season],"e","0",[Episode])

         Output - Example 1:

                          Testing - s010e01 

        Output - Example 2:

                         Testing - s010e012

The problem I am running into is that it shows additional zeros when I hit ten and over for the [Season] or [Episode].

I would like it to display like this;

    Example 1:
          Test - s10e01

    Example 2:

         Test - s10e10

Hopefully that makes sense, I appreciate the help.

Solved Solved
0 3 272
1 ACCEPTED SOLUTION

Replace the โ€œ0โ€ with:
IFS([episode] < 10 , โ€œ0โ€)

View solution in original post

3 REPLIES 3

Replace the โ€œ0โ€ with:
IFS([episode] < 10 , โ€œ0โ€)

Was typing essentially the same thing then saw you were replying and stopped! haha Thats your solution! ^

I was making it so much more complicated. Thank you both!

Top Labels in this Space