plz can you share your code ?
I see this post is unanswered from 4 years ago, but here goes, with Python:
>>> import os # import os library ... fc = 'points' # points layer ... r_fields = arcpy.ListFields("points", "r*") # get list of fields beginning with 'r' - it will depend on your data if this is appropriate ... cell_size = 100 # cell size for IDW ... out_folder = r'C:\junk' # folder for output rasters ... for r_field in r_fields: # loop through r_fields ... outIDW = arcpy.sa.Idw(fc, r_field.name, cell_size) # run IDW considering r_field ... outIDW.save(os.path.join(out_folder,r_field.name + '.tif')) # save output