I have results from a survey and want to assign a unique id number to each participant. There are four separate surveys of 30 responses each. I will like to generate ids starting with 100, 200, 300, and 400 respectively for each dataset. I am working with this code but don't know how to make it start from 100 etc.
Code:
gen case_id = _n

Comment