My file has 50 sheet inside, which each sheet is a standard form. Lets name as Form1, Form2, Form3.
I want to create a print sheet, where I select which form I want to see, so that I don't need to navigate between sheet to find the wanted one. And I want to have counter in this print sheet that It counts everytime I send to a printer.
What did I do so far? I created this formula, where M1 is a drop-down list with the form names. So If I want to see the Form2, I select Form2 in the dropdown list, and the formula displays all Form2 sheet.
=IF($M$1="Form1";IF('Form1'!A1="";"";'Form1'!A1);"")&IF($M$1="Form2";IF('Form2'!A1="";"";'Form2'!A1);"")&IF($M$1="Form3";IF('Form3'!A1="";"";'Form3'!A1);"")
It's working fine, because all forms are standardized.
After choosing the selected form, I need to insert a ID number from my company and then print it.
I would like to know if it's possible to create a counter in this sheet that counts how many times I printed... Or anything that would count in chronological order when I save or change anything...