Select worksheet using combo box and display the data in the listbox - select

I have Entry Form in excel VBA ( For example employee information First name , Last name , Job Title , Hiring date,..etc) and save this information in worksheet called Database.
What's the easiest way that I can add combobox and add another two new sheets (sheet1 name: Database 2020 and sheet2 name : Database 2019) and Add the new combobox to the Entry Form once I run the micro I can Select from the combobox Database 2020 or Database 2019 then it will display the information for the selected sheet in the listbox that I have in the Entry Form and I can edit it and delete from that sheet and save the information
Right now I have only one worksheet named Database when I run the micro will display what I have employee information in that sheet in the listbox and I can add new employee information or edit exist employee information then save it, for now I need to use two separate sheets instead of one worksheet.
Thank you,
Anyone can help ?

Related

Filter from the secondary data source can't be applied to a worksheet in Tableau

I have a worksheet that connects to two CSVs - 'Customer Report' and 'Views'. Customer Report is the secondary data source and Views is the primary data source blended within the worksheet on "location" and "sub location" fields.
I have used an "Age" filter from the Customer Report in another worksheet that has Customer Report as the primary data source and I have applied it to all related data sources. However, I'm not being able to apply it to my current worksheet. Even when I select "Apply to selected worksheets" and search for the relevant worksheet name, it appears greyed out. Any idea how I can get it to apply?
Thank you in advance!

How to repeat table in jasper report based on grouped data from SQL

This is the output from my SQL query
I am trying to create a report in Jasper Studio which will create a separate table for each city.
Right now, what I have created is something that looks like below. It shows all the data with the City listed as St. Louis. What features in Jasper will allow me to do as above?
Finally figured this out.
Create a group band for your report in Jasper. (Right click report Outline-> Create Group)
Next you have two options - create group from a report object or create group from expression. I used the first option and selected City from the list of group objects displayed. Click Next.
Selected the checkbox Add the group header and click finish.
The other change I did was - Previously my headers were under column header, I moved them under the new band group header. Now it works exactly like how I wanted.

MS Access 2016: Set a field to populate when another field was last updated

I have a split asset database in MS Access 2016 and would like to set up a report to be emailed out each day to show what project codes have been changed. The report will show specific fields from the table.
I have added a column to the Asset table which I want to have the date populated in when the Project code is changed on the front end form. How do i set it to update? I can only find ways to update based on a row not a specific field.

How to autofill data in google sheets based on values in a column

I have a column with a drop down list of the names of the students.
I want the other columns to read the name of the student written in the column from the drop down list and fill in the ID code of the student and the student address automatically.
I have a master sheet of all the students' names, IDs and addresses.
You can use VLOOKUP functionality of Google spreadsheet, if you are having master data in one sheet and you want to auto fill other based on Id or any field from your dropdown, VLOOKUP is the best solution Link : See documentation

How to combine multiple excel data into one excel with all sheets?

Actually I have a list of customers from all the countries in one sheet name "ALL".
Problem: I have to crate separate sheets for group of countries like for USA sheet name will be USA and for Australia,Germany and Switzerland sheet name will be Central_Region output will be like below image.
What I have tried till now :- I used tFilterRow component and I have got all the separate excel files group by countries . now trying to combine in one file.
For Example : I have 5 excel workbook files each has one sheet like excel1.xls has sheet "USA" other excel2.xls has sheet "Canada" and same other 3 are in same way.
Now I want to generate a single excel workbook which will have all the sheets like "USA", "Canada" and all other sheets from other excels.
I tried using iUnite but it did not help it just append all the sheets data into one sheet.Like below image
Download this add-ins
Open one your excel file and then open this add-ins file (also you can install that)
when you open this file, select Enable Macro.
Go to DATA tab on excel file and select RDB Merge add-in.
set properties and push Merge Button.
With this, your excel fills will merge in one sheet.
If you can't know in which order row will appear, you could store your data in csv files for each country.
Then you can add each csv file into a separate sheet on the Excel file using Write after.
If rows are coming in the rigth order, like all USA then Canada etc . . . you can directly use Write after in your ExcelOutput behind your tFilter but i highly suppose this is not the case.
If you have same structure excel file with different in sheet name then you have to make job like this.
tFileList---tFileInputExcel-----tMap---tFileOuputExcel
Set source directory where you get all the files to the tFileList component.
Use global varibale which hold "file with path" information and assign to the file name text box of tFileInputExcel component.
In select Sheet box assign index instead sheet name.
check Append property of tFileOuputExcel component you can merge all files in single one.
Note: in tMap you can add transformation or make changes in column sequence of output.