littlepete
Well-known Member
- Joined
- Mar 26, 2015
- Messages
- 507
- Office Version
- 365
- Platform
- Windows
hello
slowly we achieve everything we want:
making an inputbox to input all new data in a new row below the last one, so far all good.
I would like to have the title of the inputbox say "FILLING IN FIRST NAME" when prompted to fill in the first name,
"FILLING IN LAST NAME" for last name and so on...
the headers are in row 4 so far i have this:
the address in the last line works well but the text in line 3 to put the header of the current column in the inputbox does not...
who has a good idea ? thank you !!!
slowly we achieve everything we want:
making an inputbox to input all new data in a new row below the last one, so far all good.
I would like to have the title of the inputbox say "FILLING IN FIRST NAME" when prompted to fill in the first name,
"FILLING IN LAST NAME" for last name and so on...
the headers are in row 4 so far i have this:
Rich (BB code):
keuze = InputBox(Chr(10) & _
"Deze lijst bevat " & aantalcontacten & " contacten." & Chr(10) & Chr(10) & _
Cells(4 & dezekolom).Value & " invullen: ... " & _
Chr(10) & Chr(10) & _
"tik hier de nieuwe data in.", Cells(4 & dezekolom), 10000, 5000)
the address in the last line works well but the text in line 3 to put the header of the current column in the inputbox does not...
who has a good idea ? thank you !!!