I am writing a macro which compares two sets of values and warns the user if any differences are present. When a difference is found, I want the user to input their comment. To make it easy for them to understand what I'm asking about, I want to show all the numbers inside the InputBox I use to get the comment. Example InputBox I want to get could look the following way:
Difference between warehouse and accounting records! See details below, insert reason.
Product: Toyota Corolla
------------------------------
|Item |Warehouse|Accounting|
------------------------------
|Wheel | 3| 3|
------------------------------
|Engine | 2| 3|
------------------------------
|Door | 7| 7|
------------------------------
|Gearbox| 5| 5|
------------------------------
|Roof | 4| 3|
------------------------------
In this case, the alert is caused by different values for Roof and Engine. The numbers filling the table are stored in variables. How to make such table which will look clear to user who has to enter the comment?