In Excel VBA I am assigning a hard coded date to a named range as below:
Worksheets("Main").Range("Effectivedate").Value ="11/12/2018"
This is been triggered on a button Click. Now I have my system culture as UK. When I click the button the value populated on the cell is "12/11/2018". If I change the culture to US then it get populated as "11/12/2018".
As my application is been used between US and UK countries, I would like to know is there a way assign the date as such t the cell without formatting.