A description Column already exists. If you right click on the heading you get a menu with additional fields. Click on "More.." at the bottom and there is a description field in there.
Taken from Excel VBA help, but same should apply:
"If prompt consists of more than one line, you can separate the lines using a carriage return character (Chr(13)),
a linefeed character (Chr(10)), or carriage return – linefeed character combination (Chr(13) & Chr(10)) between each line.
Check to see if it's a shared workbook. Go to Tools, Share Workbook. If the Allow changes box is ticked, then you can't merge cells. You would have to un-share it first.
I think it depends on what you are trying to accomplish. For me, the escape key is for resetting, so when I want to use it I use "<Reset>".
What actions are you trying to perform that require the ControlKey?
Instead of using the left mouse button, use the right to drag to where he wants, then select the Copy Cells from the item menu which should automatically open up.
You can do this in the Status Bar.
Code from Combo a long time ago:
Place this in a standard module.
Sub xlTimer()
With Application
.StatusBar = Format(Time, "hh:mm:ss")
.OnTime Time + TimeValue("00:00:01"), "xlTimer"
End With
End Sub
You can start it in open procedure (Thisworkbook...
How have you set it up?
If you have say Cat as your rows and Time Range as your columns, then add time range into the data items, set as a count, then this should give you what you are after.
As you are saving the workbook with a name down to the second, I would apply the time to a variable and then use that to save and close the workbook.
tim$ = format(now, "yymmdd_hhmmss")
ActiveWorkbook.SaveAs Filename:= _
"C:\ resultaten\resultaten" & tim$ & ".xls", FileFormat _...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.