Hi There,
I have two files:
1. User List File: This contains a list of users, their subsciption plan names, plan types, purchase dates and the price they paid.

2. Plan List File: This contains details of all plans, including the plan type, plan name, price and the date range during which the price was valid.

WHAT I WANT TO DO:
I want to check if the price a user paid (from the User List File) matches the correct price from the Plan List File, based on:
- Plan Type
- Date of Purchase (should fall within the valis price date range in the Plan List)
- Plan Name (even though names dont match exactly)
CHALLENGES FACING:
The plan names in both files are not exactly same. Some names are slightly different and some only share keywords. I need a way to fuzzy match or find partial matches between plan names
I need to check if the user's purchase date falls within the correct date range in the Plan List for that plan
There are two plan types and the same plan name in each type can have different prices for the same date range. So I need to ensure the plan type is matched exactly when comparing.
I have attached a workflow with sample data for your reference. I really appreciate the effort.
Thanks in advance.