Add a command button for adding the same existing - vba

As we have existing table in a word under that we need to add a command button for adding the same existing table on every click , after pasting the table on the document the button should move below the copied table. Please help with VB Code

Related

Problem appending CSV upload to existing BigQuery table

I've been used to quickly uploading a CSV file to append data to an existing table in BigQuery.
I've made the new table name the same as the existing table, and I've then had options to overwrite or append data to the existing table.
This seems to have changed in the past few days and there is a new BigQuery console UI.
When I try and create a new table from a CSV file upload, under the table name field it currently says:
Unicode letters, marks, numbers, connectors, dashes or spaces allowed.
The job will create the specified destination table if needed, or the
table must be empty if it already exists.
However, when I try and create a table with the same name as an existing table (even though the existing table is empty), I get a red warning saying:
Table already exists
Does anyone know if this feature has now been removed or how to easily append data?
The long way round is to upload a CSV to a new table, then query the new table and set the destination to append or overwrite an existing table. Not ideal, particulalry having to define a new table schema.
In order to append a CSV file to an existing BigQuery table when using the Console, please follow the instructions below:
In the Explorer panel, expand your project and select a dataset.
Expand the Actions option and click Open.
In the details panel, click Create table.
On the Create table page, in the Source section:
For Create table from, select Upload.
Browse file from system
On the Create table page, in the Destination section:
For Dataset name, choose the appropriate dataset.
In the Schema section, for Auto detect, check Schema and input parameters to enable schema auto detection. Alternatively, you can manually enter the schema definition
Click Advanced options.
For Write preference, choose Append to table
Please review this document that expands on the same topic.

How to Edit the Macro that is created using "after Update" option in access

I created a macro using the 'after update' feature in access to capture some fields into table B (from table A) when the date in a particular column in table A is changed. This is working well.
However, I found out that I wanted to copy one more column to the table B from table A when the date is changed. In order to do this, I need to provide another 'Set Field' option to the original macro . But this macro is neither visible in the navigation pane nor in the VBE.
I am a new user to access and VBA.
Open up the table in design mode.
from the ribbon, you can use this dialog:
If there is a existing macro, say like before change, then you see in the above list that the given macro will be "highlighed".

convert text file to Excel sheet using SSDT

I have requirement where I need to convert text file to Excel Sheet using SSDT.
I have idea how to do like I
Step 1. have to upload data to sql server any table
and then Step 2. from Sql Server to Excel Spread sheet.
But I would like to do it in only one step that is Convert Directly from Text file to Excel Sheet without sending it to the table in Sql server using SSDT. Is there any way that I could do in one Step. Thank you in advance.
If i am understanding your question correctly, it is possible to use the import data wizard in SSMS to convert a text file to an excel file. You can save the wizard as an SSIS package also if you need to do the conversion programatically.
right click on any database in your server, hover over 'tasks' and select 'import data...'
in 'data source' drop down, select 'flat file source'. click next.
browse to the file you want to import. you can preview your flat file from here to make sure its rows and columns have been detected correctly. click next.
in 'destination' drop down, select 'microsoft excel'. browse to the destination folder and name your file. click next.
here you can rename columns and preview the end result. click next.
map your data types and determine if you want the package to fail if you encounter an error. click next.
here you can choose to save as an SSIS package or just run one time. you can now click through the rest depending on your choice to finish the sequence.
This is a very brief overview. for more detailed information, you can go here: https://learn.microsoft.com/en-us/sql/integration-services/import-export-data/import-and-export-data-with-the-sql-server-import-and-export-wizard?view=sql-server-2017
I hope this helps.

How to connect an Excel file to an Access Database

I have created a query in an Access database and exported the query result into an Excel file. Now, I want to connect that Excel file to the Access database (or to that query) so that whenever some fields are updated in database, those changes would be automatically updated in the exported Excel file (report). What would be the best way to do it?
Thanks
You can create a link between Excel and an Access table or query by going to the Data tab on Excel and clicking the "From Access" icon.
Alternatively if there is a trigger inside access that you can use to update data (or if you don't need real time updates just hourly or daily ones), you could have access programmatically re-export.
If you want to work with data in Access, but still maintain the data in Excel, you need to link to the data rather than import it. Follow these steps:
Create a blank database or open an existing file in Access.
Select File, Get External Data, Link Tables.
Select Microsoft Excel as the file type.
Select a worksheet or named range to import, and then
click Next. You can import only one worksheet or named range at a
time, and each one will become an Access table.
In the next dialog box, select or deselect the check box First Row
Contains Column Headings, depending on whether your worksheet has
headings. Then click Next.
Enter a name for the table (or accept the default name that Access
suggests), click Finish, and click OK.
Now you have an Access table that looks almost exactly like the imported table. The advantage is that it maintains a live link to the Excel worksheet and can be edited in either application.

Why when I extract from my database it automatically adds new lines?

For example, my database would have an entry that says "This is a title". In server management studio, it would present it as that one line. Whenever I try to export or copy and paste that result into excel, it turns into
This
Is
A
Title
in 4 different cells
Instead of
This is a title
in one cell
Why is this happening and do I fix it so I can just have the data in one cell when I export?
After connecting to the database using python and examining the data in text, it seems as though the data had the new line escape character,\n,'embedded in them. This is what resulted in excel displaying them as new lines.