I cannot figure this out, may no be possible with a number format. If not, is there any other way to accomplish this?
I have thousands of these to enter into a spreadsheet.
Using this custom number format "MNET_1.WriteData["#0"]" I can get the number to increase dragging the cell and filling series.
Example
I want to add a second number format MNET_1.WriteData[#0"]."#0
Example
Also, I need the number to start over at 0 after the value reaches 15
Example
I have thousands of these to enter into a spreadsheet.
Using this custom number format "MNET_1.WriteData["#0"]" I can get the number to increase dragging the cell and filling series.
Example
MNET_1.WriteData[0] |
MNET_1.WriteData[1] |
MNET_1.WriteData[2] |
MNET_1.WriteData[3] |
MNET_1.WriteData[4] |
I want to add a second number format MNET_1.WriteData[#0"]."#0
Example
MNET_1.WriteData[0].0 |
MNET_1.WriteData[1].1 |
MNET_1.WriteData[2].2 |
MNET_1.WriteData[3].3 |
MNET_1.WriteData[4].4 |
Also, I need the number to start over at 0 after the value reaches 15
Example
MNET_1.WriteData[0].13 |
MNET_1.WriteData[1].14 |
MNET_1.WriteData[1].15 |
MNET_1.WriteData[2].0 |
MNET_1.WriteData[2].1 |
MNET_1.WriteData[2].2 |