所以,我做了一个应用程序,通过rest api调用从Spreadsheet中获取数据。 此数据从ValueRange对象映射到自定义对象列表,并在应用程序中缓存10分钟。
我希望能够更新指定行的单个单元格,但我不知道其中的范围值(例如“E9”)。
是否有一种好方法可以遍历电子表格中的项目并更新另一个字段值匹配的单元格值?!
public static void UpdateQuantity(string nameToMatch, int quantity)
{
// find row where column A matches nameToMatch
// update value of column B with quantity
// finally clear cache to get the new data
CacheHelper.ClearCache();
}
如果不是,在迭代电子表格中的行时,如何知道当前行号,以便我进行REST调用以更新特定单元格?
提前致谢。