Kevineamon
New Member
- Joined
- Aug 1, 2018
- Messages
- 27
I have a problem here with an excel function. This wouldn't be a problemif could use scripts but unfortunately, there's another piece of softwarethat needs to read the data, this software cannot read scripts. I musttherefore, only use functions. I have this list of data
%MW101.0
%MW101.1
%MW101.2
%MW101.3
%MW101.4
%MW101.5
%MW101.6
%MW101.7
%MW101.8
%MW101.9
%MW101.10
%MW101.11
%MW101.12
%MW101.13
%MW101.14
%MW101.15
I’ve created this formula which is possibly slightly morecomplex than it needs to be.
=IFERROR(IF(MID(A2,SEARCH(".",A2),1)=".",CONCAT("%MW",MID(A2,SEARCH("W",A2)+1,3)+1)&MID(A2,SEARCH(".",A2),2)),CONCAT("%MW",MID(A2,SEARCH("W",A2)+1,3)+1))
It basically implements the last number by one unless there’sthat .0 at the end.
Eg.
%MW102.0
%MW102.1
%MW102.2
%MW102.3
%MW102.4
%MW102.5
%MW102.6
%MW102.7
%MW102.8
%MW102.9
%MW102.1
%MW102.1
%MW102.1
%MW102.1
%MW102.1
%MW102.1
This is the next column that it generated which is all good.
And if I pull the angry rabbit thing across the columns, toa set number, then it will generate, the necessary data.
I just want that to be automated, but not on the firstoccasion. I want the data on the first occasion but not for the rest. I wantthe rest to show the increments.