on 2020 Jul 22 9:09 PM
Hello to all.
I have an issue.
One dimension is called YQuarter and is a Number of 5 digits.
I need to extract from this dimension the last number.
I tried ToNumber(Substr([YQuarter];5;1);"0") but I got the invalid data type message.
Tried also Right([YQuarter];1) andToNumber(Right([YQuarter];1);"0") => same message
HELP !
Request clarification before answering.
If the dimension is numeric, then you're on the right track but thinking about it backwards. You need to convert it to a character string first. Try:
=Right(FormatNumber([YQuarter];"0");1)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
77 | |
30 | |
9 | |
8 | |
7 | |
7 | |
6 | |
5 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.