Pop-up Input Form that retains and posts data

Noddyparp

New Member
Joined
Nov 30, 2022
Messages
1
Platform
  1. Windows
  2. MacOS
Hi,
I am trying to have a pop-up input form which you enter and select data into, which will keep that data as well as posting it to the relevant area in the main sheet. Currently it is a separate sheet, but I want to use only the one sheet and have a pop-up over it.

It looks like:
1669853511538.png


You enter straight into:
  • Employee ID
  • Employee Name
  • Old & New Hourly Rate
  • Old & New Location Allowance Rate
Payrun Start is a drop down box sourced from a "Data" Sheet
Payrun End is a calc 14 days after Payrun Start

The tick boxes have some VB Code which allow the Old Rates to be copied to the New Rates if applicable.

Code is:

Private Sub CheckBox1_Click()
If CheckBox1.Value Then
Range("C12") = Range("C10").Value2
Else
Range("C12").ClearContents
End If
End Sub

Private Sub CheckBox2_Click()
If CheckBox2.Value Then
Range("G12") = Range("G10").Value2
Else
Range("G12").ClearContents
End If
End Sub

Not sure if that is relevant.


Then it would needs a Close/Hide Button, but should be able to accessed via a key combination (macro) if needed again.

Oh, each field except the tick boxes are "Names". Some are referenced elsewhere on the "Main" Sheet or the "Data" Sheet.

I have tried a few things with no success to date.

Any help appreciated.

Thanks,
Wazza
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Hi. I will probably need more specifics, but I put together a workbook and added to DropBox (shared WB link) based on some of my assumptions.

An image of the file and userform is below. I have two tabs in the WB - a "Data" tab, where the Payroll Adjustment information is written to, and a "RunDates" tab with a list of bi-weekly dates. On the "Data" tab, there will be a text box with "Create Adjustment". Click that and the userform to create the new adjustment will display.

1671406408373.png
 
Upvote 0

Forum statistics

Threads
1,214,826
Messages
6,121,794
Members
449,048
Latest member
greyangel23

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top