Question: Before we can conduct the analysis, the data needs to be prepared. In the EntryFormatted column, if the Entry Number is odd, format the number
Before we can conduct the analysis, the data needs to be prepared. In the EntryFormatted column, if the Entry Number is odd, format the number as XXXX-XXXX. If Entry Number is even, format it as XX-XXX-XXX.
Use the same formula for all rows. The Entry Number data is stored as text. Do not manually change this to number as you would then lose the leading 0 on some of the data.
This means that you will need to see if a value is odd by first converting the last digit to a number. You do this with ISODD(VALUE(RIGHT(XXXX, 1))) where XXXX is your cell reference. The RIGHT(XXXX, 1) gets the last digit, then VALUE() turns the text into a number, then ISODD() provides true or false if that number is odd or not.
The entry number is 02387804 and is entered as a text.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
