Floating excel table that updates [closed] - excel

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.

Related

Save selection as 'Snippet' [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 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 ()

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

Is There a Way to Automate Copying and Pasting Data From Excel to Powerpoint? [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 need to copy and paste certain tables from excel and paste them in a powerpoint presentation as a bitmap picture once a month. It takes 2 to 3 hours when I do it manually. Is there something I can do to automate this process? I tried recording a macro but it didn't work the way I've anticipated. I haven't tried to write a VBA code yet, just wanted to know if it is worth my time. If you have any other suggestions, please let me know.
Paste the tables as objects instead that way it will be automatically updated.
You copy the range you need in Excel then when you paste it in PowerPoint you paste special:
Then paste as link and choose MS Excel Object.
When you make changes in Excel the changes should happen in PowerPoint too.

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.

How to merge several .xls files? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I have several .xls files, they structure are same.
I need merge this files as one .xls file.
How to make this?
Manually:
Open the master workbook, the one to be copied to.
Open the next workbook to have worksheets copied from.
Select all worksheets using ctrl + left click on each worksheet.
right click on the worksheets and press copy / move.
Once dialog has opened select copy and the master workbook from the list.
The press ok.
Close this workbook and repeat for all other workbooks.

Resources