littlepete
Well-known Member
- Joined
- Mar 26, 2015
- Messages
- 507
- Office Version
- 365
- Platform
- Windows
hello
i am currently working on an inputbox to fill in new data in a new last row, and that's working perfectly !
now i'm trying to adjust the macro to go through all data of an existing row.
when going from K to Z it does not show the data of the column in the active row.
but when i type 99 (case go back to column -1) it does show the data ...
what do i need to adjust ?
thank you for your point of view !!!
i am currently working on an inputbox to fill in new data in a new last row, and that's working perfectly !
now i'm trying to adjust the macro to go through all data of an existing row.
when going from K to Z it does not show the data of the column in the active row.
but when i type 99 (case go back to column -1) it does show the data ...
what do i need to adjust ?
VBA Code:
keuze = InputBox(Chr(10) & _
"Deze lijst bevat " & aantalcontacten & " contacten." & Chr(10) & Chr(10) & _ // [I]list containing x contacts[/I]
"tik 0 om dit scherm te verlaten." & Chr(10) & _
"druk 99 om naar het vorige gegeven terug te gaan." & Chr(10) & _ // [I]type 99 to select column -2 from D to C (for.ex.)[/I]
" druk 55 om bestaande gegevens te wijzigen." & Chr(10) & _
"druk ENTER voor volgende gegeven." & Chr(10) & _ // [I]press enter to continue without changes[/I]
"______________________________________________________" & Chr(10) & Chr(10) & _
Cells(titelrij, dezekolom).Value & " invullen: ..." & Chr(10) & _
"nu: [ " & Cells(nieuwerij, dezekolom).Value & " ]" & Chr(10), _
UCase(Cells(nieuwerij, dezekolom).Value & " INVULLEN [ " & dezekolom & " van 96 ]"), antwoord, 11000, 10000)
thank you for your point of view !!!