Auto increment with Prefix In Power Apps

Опубликовано: 18 Май 2026
на канале: Eric Entsie
22,577
114

In this tutorial we look at the Auto Numbering or Automatic increment of a Column in Power Apps:
How to Perform the Increment where the column is of Number Type
If(Form1.Mode=FormMode.New,First(Sort(ZA_Hardard_List,ID,Descending)).ID+1,Parent.Default)

Where it a combination of Text and Number; thus a Prefix Auto Increment
If(Form1.Mode=FormMode.New,"ABC-"&First(Sort(AddColumns(ZA_Hardard_List,"NewColID",Trim(Substitute(ID2,"ABC-",""))*1),NewColID,Descending)).NewColID+1, Parent .Default)