I have an Excel file containing bill data. I need to use UiPath to automate the following process:
Split the data: For each unique bill number found in column E, create a separate Excel workbook.
Naming Convention: Name each new workbook using the format “Bill_[bill_number]_[timestamp].xlsx”.
Worksheet Naming: Name the worksheet within each new workbook “Bill_[bill_number]”.
Special Character Handling: Ensure bill numbers with special characters are processed to create valid filenames.
Performance: Optimize the process by disabling screen updating during execution.
Error Handling & Feedback: Implement robust error handling and provide clear user feedback, including a count of successfully created workbooks.
Data Transfer: Copy the header row (A1:G1) and all rows associated with each unique bill number (columns A:G) from the original file into the corresponding new workbook.
I have working VBA code that achieves this, but I need to implement this functionality in UiPath. Can you provide guidance or a UiPath workflow example that replicates the desired behavior?