Hi,
I have an existing table which contains a column listing IDs. However some of its cells contain an empty ID:
ID Age
XYS 29
60
STW 55
WTR 36
45
I would like to assign Alphanumeric IDs (20 digits) to these empty cells in order for them to be filled, but never repeated. This should also happen, irrespectively of the number of rows of the data set, as follows:
ID Age
XYSRW 29
RAND1 60
STWQT 55
WTRWQ 36
RAND2 45
Can somebody help me on this issue, with a simple statement that fills automatically these empty fields randomly?
Thank you so much.
Fernando