answersLogoWhite

0


Best Answer

IF YOU WISH EXCEL LABEL TO DISPLAY DATE AND TIME YOU CAN USE THE ONTIME FUNCTION.

WHEN THE USERFORM INTITIALISES YOU CAN OPEN THE FUNCTION THAT WE WILL CREATE FOR THIS FUNCTION FOR EG RELOAD

SUB USERFORM_INITIALISE()

CALL RELOAD

END SUB

THEN YOU CAN CREATE THE SUB WHICH WILL UPDATE THE LABEL

SUB RELOAD()

DIM INT AS DATE

INT = NOW

INT= NOW + TIMEVALUE("00:00:01")

APPLICATION.ONTIME INT,"RELOAD",,TRUE

USERFORM.LABEL1.CAPTION = TIME

END SUB

THE SUB RELOAD WILL BE DONE EVERY SECOND AND SO THE LABEL WILL GET a NEW LABEL TIME EVERY SECOND SO THIS FUNCTION WILL ACT LIKE A SECONDS CLOCK IN EXCEL.

END SUB

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can we display real time label using the vba in the Excel form?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you display Sales Amt on Excel 2013?

You would calculate it using the Sum function. It will depend on what cells your values are in as to what form the actual formula will take.


You can include horizontal gridlines on a form but not vertical gridlines?

You can create a form with MS Excel that has both horizontal and vertical gridlines, you just format the borders of the cells you want to display.


What Are the Intersecting structures of an Excel worksheet called?

Rows and columns intersect to form cells on an Excel worksheet.Rows and columns intersect to form cells on an Excel worksheet.Rows and columns intersect to form cells on an Excel worksheet.Rows and columns intersect to form cells on an Excel worksheet.Rows and columns intersect to form cells on an Excel worksheet.Rows and columns intersect to form cells on an Excel worksheet.Rows and columns intersect to form cells on an Excel worksheet.Rows and columns intersect to form cells on an Excel worksheet.Rows and columns intersect to form cells on an Excel worksheet.Rows and columns intersect to form cells on an Excel worksheet.Rows and columns intersect to form cells on an Excel worksheet.


What is the Abstract form of excel?

Excel-≥ excelling


How do you entered information into Excel worksheet?

You can just type in what you want into Excel, by putting things into cells. Then by entering formulas you can get information from the spreadsheet. You can get charts from your data. You can enter data using forms. You can enter data using form controls, such as drop-down boxes.You can just type in what you want into Excel, by putting things into cells. Then by entering formulas you can get information from the spreadsheet. You can get charts from your data. You can enter data using forms. You can enter data using form controls, such as drop-down boxes.You can just type in what you want into Excel, by putting things into cells. Then by entering formulas you can get information from the spreadsheet. You can get charts from your data. You can enter data using forms. You can enter data using form controls, such as drop-down boxes.You can just type in what you want into Excel, by putting things into cells. Then by entering formulas you can get information from the spreadsheet. You can get charts from your data. You can enter data using forms. You can enter data using form controls, such as drop-down boxes.You can just type in what you want into Excel, by putting things into cells. Then by entering formulas you can get information from the spreadsheet. You can get charts from your data. You can enter data using forms. You can enter data using form controls, such as drop-down boxes.You can just type in what you want into Excel, by putting things into cells. Then by entering formulas you can get information from the spreadsheet. You can get charts from your data. You can enter data using forms. You can enter data using form controls, such as drop-down boxes.You can just type in what you want into Excel, by putting things into cells. Then by entering formulas you can get information from the spreadsheet. You can get charts from your data. You can enter data using forms. You can enter data using form controls, such as drop-down boxes.You can just type in what you want into Excel, by putting things into cells. Then by entering formulas you can get information from the spreadsheet. You can get charts from your data. You can enter data using forms. You can enter data using form controls, such as drop-down boxes.You can just type in what you want into Excel, by putting things into cells. Then by entering formulas you can get information from the spreadsheet. You can get charts from your data. You can enter data using forms. You can enter data using form controls, such as drop-down boxes.You can just type in what you want into Excel, by putting things into cells. Then by entering formulas you can get information from the spreadsheet. You can get charts from your data. You can enter data using forms. You can enter data using form controls, such as drop-down boxes.You can just type in what you want into Excel, by putting things into cells. Then by entering formulas you can get information from the spreadsheet. You can get charts from your data. You can enter data using forms. You can enter data using form controls, such as drop-down boxes.


Where did ADR Records form there label?

They Form There Label In Milwaukee,WI


How many oranges are there in the display if a grocery clerk sets up a display of oranges in the form of a triangle using 10 oranges at the base and 1 at the top?

55


How many oranges are in the display if a grocery clerk sets up a display of oranges in the form of a triangle using 10 oranges at the base and 1 at the top?

55 Oranges


What is the fullform of excel?

executable cell


What is a verb for excellence?

The noun 'excellence' is a form of the verb to excel.


What is the full form of PFA in Excel sheet?

Pfa the excel sheet


How to display the text box value in another form using VB.NET?

You can display a textbox value in another form using Vb.NET. Simply by inputing this line of code:'You can put this code anywhere under a Private Sub or Sub''I Will use an example of a textbox named "testabc" and "othertextacbcTestAbc.Text = frmMain.OtherTextAbc.Text'You can replace the "frmMain with the form you are trying to access.