Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am looking to set up a field that is incremented automatically by one for each field in my Billing, to create each KPI KPI_ID on my field.
Do you have any idea?
Try AutoNumber(Metric)
Can you explain your requirement with sample data and expected output
Metric | Metric Id |
User Experience | 1 |
Business Transaction | 2 |
Basepage | 3 |
iFrame | 4 |
I've got the field Metric, and i want to create Metric Id.
is it ok for you ?
You can use
RowNo() as MetricID
or try creating an inline Table and Assign your metrics with an ID
Regards
Alan
Use RowNo()
Load *,RowNo() As MetricId Inline [
Metric
User Experience
Business Transaction
Basepage
iFrame ];
i did it first with an Inline, but the number of KPI will change in the time.
i tried your solution, but the distinct doesn't work. i've got more then 1000 records.
Try AutoNumber(Metric)
well done
i forgot this function.