I have an excel worksheet that lists expenses. The columns are Date, Category, Amount, Description, Sub Category, and Subscription. I want to return a list of the date and, amount of all records with the category "Investment", on to different worksheets called Budget from a worksheet called Expenses.
In SQL you would write it asSELECT Date, Category FROM Expenses WHERE Category == "Investment";
But I'm using excel and not good at execl.
The Expense worksheet has a title on the first row, column names on the second row, data starting on the third row, and columns going A to F, in the order first stated above.
Is there a way to display the results onto another worksheet using excel functions?