Creating a report for bank transations

Anonymous 0 Reputation points
2025-08-28T02:34:01.65+00:00

User's image

I am importing my bank transitions to use in a budget file and I'm looking to have excel see certain transactions.

Example when it sees Tim Hortons under Sub-description I would like it to change the POS Purchase to Take Out

Microsoft 365 and Office | Excel | For home | Windows
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Thomas4-N 1,095 Reputation points Microsoft External Staff Moderator
    2025-08-28T07:07:07.16+00:00

    Hi Anonymous,

    Welcome to Microsoft Q&A.

    You can use a formula in Excel to automatically categorize transactions based on the merchant name found in the Sub-description column. For example, if you want to change the Description from "pos purchase" to "Take Out" when the Sub-description contains "Tim Hortons", you can use the following formula:

    =IF(ISNUMBER(SEARCH("Tim Hortons",D2)),"Take Out",C2)

    This formula checks if "Tim Hortons" appears in cell D2 (Sub-description). If it does, it returns "Take Out". If not, it returns the original value from cell C2 (Description).

    You should place this formula in a new column, such as Column A - cell A2, so that it does not overwrite your original descriptions.

    If you want to expand this logic to handle multiple merchants, you can use the IFS function like this:

    User's image

    This version allows you to assign different categories based on the merchant name. If none of the specified merchants are found, it will return the original Description value.

    I hope this is what you're looking for. Let me know if you need help customizing this further.

    Warm regards,

    ------------------------------------------------------------------------------------------------------------ 

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".  

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread. 


  2. Anonymous 0 Reputation points
    2025-08-29T01:38:36.2333333+00:00

    Is there a Limit of how many I can use ? I get this error message

    User's image


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.