HOW TO CHANGE TEXT TO 1
Closed
GC
-
Aug 27, 2009 at 08:53 AM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Aug 27, 2009 at 09:15 PM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Aug 27, 2009 at 09:15 PM
Related:
- HOW TO CHANGE TEXT TO 1
- Tentacle locker 1 - Download - Adult games
- Fnaf 1 download pc - Download - Horror
- Igi 1 download - Download - Shooters
- Fnia 1 apk - Download - Adult games
- Poppy playtime chapter 1 download pc - Download - Horror
1 response
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Aug 27, 2009 at 09:15 PM
Aug 27, 2009 at 09:15 PM
you must do the modification to your original formula
what is the formula which gives the N/A eerro
suppose the data from a1 to B4 are like this
a 1
s 2
d 3
f 4
in A8 you have "j"
in B8 if you have formula
=VLOOKUP(A8,$A$1:$B$4,2,0)
then B8 will get error that is #N/A
to avoid this you must have
=IF(ISNA(VLOOKUP(A8,$A$1:$B$4,2,0)),1,VLOOKUP(A8,$A$1:$B$4,2,0))
on these lines modify your macro
what is the formula which gives the N/A eerro
suppose the data from a1 to B4 are like this
a 1
s 2
d 3
f 4
in A8 you have "j"
in B8 if you have formula
=VLOOKUP(A8,$A$1:$B$4,2,0)
then B8 will get error that is #N/A
to avoid this you must have
=IF(ISNA(VLOOKUP(A8,$A$1:$B$4,2,0)),1,VLOOKUP(A8,$A$1:$B$4,2,0))
on these lines modify your macro