Save selection as 'Snippet' [closed] - excel

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 days ago.
Improve this question
I want to make a VBA shortcut for other people to easily save the worksheet as a 'snippet' essentially.
it will be projected onto a wall so a PDF is not viable as it will have a white border inherently.
The range will always be the same and the file name will always be the same, however, i also need it to overwrite and replace the file each time.
Please & Thank you
sub (SaveToFile)
end sub ()

Related

how can I drag text from one a textbox to another textbox in a userform [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I have 20 textboxes in a userform and I want to move the text from textbox1 to
textbox5 by dragging and dropping it with the mouse, but I really have no idea how to do this. I am not an experienced programmer in VBA so maybe it is not even possible
No VBA required! It is simple than you think :)
Set the DragBehavior of the TextBox to fmDragBehaviorEnabled at design time as shown below and you are done
In Action

VBA Macro for use AS400 [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I want to automate AS400 through a VBA code.
I would make a simple macro that make access to AS400 and insert some text in a field.
It is possible?
I search on internet and i understand that exist a PCOMM properties that allow to command AS400 from VBA Macro. It's right?
Thank's for your support!

VBA Excel 365 - require print page number for active cell [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
In Excel. Positioned in an active cell. I require VBA code to return the Vertical Print page which that cell is in.

Floating excel table that updates [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I have a small table in excel that I want to always be visible when scrolling through the worksheet and update as changes are made from the general worksheet. VBA help please.
Freeze Panes
Move your table to the top left region of your worksheet and select the cell to the right and down from the last cell of your table and choose Window>Freeze Panes.
The image shows an example where the table is in range A1:G16. Now you have to select cell H17 and choose Window>Freeze Panes.

Method in Trevor Eyre datepicker in VBA [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
Which method I must use to change date format from MM/DD/YYYY to DD/MM/YYYY?
I search on the Trevor Eyre page and on this forum and I didn't find answer for my question.
in vba you can simply use
Dim DateStr as String
DateStr=Format(DatetoConvert,"dd/mm/yyyy") '<--- change the last
'part to whatever delimiter you like
on a worksheet you can change the format to whatever you want

Resources