当多维表格遇上飞书Aily,让AI帮你把Excel批量写入多维表格的新玩法

上一次我们有聊到如何用多维表格+应用模式,从0到1搭建一个轻量版的库存管理系统

用飞书多维表格+应用模式,从0到1搭出轻量库存管理系统

在使用过程中,发现了一个小痛点:如何批量操作入库

这个问题的背景是:有的用户收到物品后,可能对方发给他的是一个excel文件,他需要把文件里的物品操作入库。

一般来说系统都会有一个批量导入的功能。

但经常用多维表格的朋友可能清楚,新增记录,都是一行一行新增

这样就很麻烦了。

如何做批量操作?今天就介绍几种方法。最后讲讲如何用飞书aily优雅的来解决。

1、在多维表格直接复制粘贴

最简单高效

直接打开多维表格,把excel的内容复制下来,然后直接粘贴到多维表格里。

这种方法虽然简单粗暴,但是对于用户来说,可能并不是很友好。

比如说用户都是在应用模式下使用的

这时要做批量入库操作,你指引他去到多维表格的底表里,然后复制粘贴进去。

想一想这个步骤,可能用户理解起来会有点困难。虽然操作方便

2、看看有没有批量操作插件

多维表格里有一个插件市场,有官方和个人自己开发的插件,这些插件可以满足一些多维表格实现不到的功能

比如时区转换、删除重复记录等等

当多维表格满足不到的功能,我们都可以去插件市场找找看

我搜了一下“批量”关键词,发现好像暂时还没有批量录入的功能

那就先放弃插件的这个想法。

3、试试用飞书的AI功能

重点讲讲AI功能的实现方法。

有没有可能直接用AI实现?比如我把excel发给AI,AI自动提取里面的内容并帮我在多维表格新增记录。

我们就用飞书的aily来试一下。

在用之前,我预想到这里可能有几个难点:①aily能不能把excel里的内容提取出来 ②入库表格里的物品名称字段,是从库存表里选择的,也就是说你直接让AI帮你新增入库表里的记录,物品名称的字段可能会添加失败 ③aily能不能直接把记录添加到多维表格里,也是一个问题,以往都是用接口的方式添加,这种直接让AI添加是否可行。

抱着这几个问题,我们就来试试看。

首先直接用和aily对话的方式,试了好几轮,发现不行,它并不能最终帮我们写入到多维表格里

我们再试下用aily智能体的方式

创建智能体

首先我们在aily里面创建一个智能体

点击后,有一个弹框出现,我们直接描述我们对智能体的需求,也就是prompt指令,aily会自动为我们生成智能体,比如我说“我需要一个智能体,可以自动获取发送给你的Excel文件里的入库数据,并将内容新增到对应的多维表格的数据表里”,我们先用这个简单的指令试试

发送后,aily自动创建了一个智能体,并且自动生成了头像、名称和这个智能体的指令以及推荐问题。

我们把excel直接发给它,可想而知它肯定不知道要把excel的数据新增到哪个多维表格里。

不过我们先不管,先试试看它是什么反应

我创建了一个excel表,录了三行demo数据,然后发给aily,让它帮我录入到对应的表格里

结果,它告诉我不行,因为不支持与多维表格的api交互

我想是不是因为没加这个MCP服务?那我们就把多维表格加进去。

重新再试一下

果然是这个原因,MCP启用多维表格服务后,就可以正常调用多维表格的API了

这个智能体会自己调用多维表格的MCP工具,帮你完成操作。

竟然成功了

回到表格里,发现已经自动新增了我excel里的三条记录

我觉得比较厉害的是,它可以通过物品编号,找到库存信息表里的物品,然后帮你新增(通过查询库存表里的关联记录id)

这样就很方便了,直接发excel,然后自动新增入库。

最后我们可以完善一下智能体的指令,点右上角的发布就可以用了

##角色
你是一个数据处理智能体,接收用户发送的Excel文件,自动获取文件里的数据,并将这些数据维护到对应的多维表格数据表里,确保数据字段准确匹配。

操作的步骤:
1.读取Excel数据
解析用户上传的Excel文件,提取“库存入库管理”表中的数据(包含:入库物品编号、入库物品名称、入库数量、入库日期等字段)。入库物品编号和入库数量是必填项,如果没有,需要暂停并让用户重新上传
2.查询关联记录ID
根据Excel中的 入库物品编号,自动查询 库存信息表(链接:[补充你的多维表格链接])中对应编号的 记录ID(格式为recxxxx)。
若查询不到对应编号,暂停导入并提示用户检查物品编号是否存在。
3.批量导入库存入库表
将Excel数据与查询到的 记录ID 匹配,构造符合格式的记录(例如:{"入库物品编号": ["recxxxx"], "入库数量": 2, ...})。
调用接口批量添加到 库存入库管理表(链接::[补充你的多维表格链接])。
4.结果反馈
导入完成后,返回成功/失败状态及新记录ID,方便后续核对。

##限制
仅处理用户提供的Excel文件,不考虑其他未提供的数据源。
在将数据维护到多维表格时,严格按照对应的字段进行匹配,不得随意修改数据内容。

最后,我们在库存管理应用模式的页面里,把智能体的链接通过按钮的方式加进去

用户点击这个按钮,就会打开智能体的页面,然后发送excel给智能体,AI自动完成批量新增操作。

挺有意思的。不过飞书aily,目前应该是企业版才能用,个人版只有不多的体验额度。

除了上面分享的这几种方法,各位大佬们还有其他什么更厉害优雅的方法吗?

欢迎留言~

最后再说一个事儿

多维表格可以作为单品来使用了,也就是说你不用下载飞书,不用绑定飞书其他的各种功能,就单独使用多维表格就好,这样就非常轻量化了。

宣布一个福利:

通过我的专属邀请码注册飞书多维表格,就可以免费获得三个月的专业版(除注册即送的1个月专业版(价值349元/年),额外加赠2个月,合计免费体验3个月。)

操作很简单

Step1:打开飞书多维表格单品的官方注册网址→https://fcna6swh3rtl.feishu.cn/share/base/form/shrcn8BkxqoKYeA6XyZZAB7zK73

Step2:输入手机验证码后,就可以跳转填写邀请码

邀请码:New2S2bI8sS2sT

225人评论了“当多维表格遇上飞书Aily,让AI帮你把Excel批量写入多维表格的新玩法”

  1. Hi there! Would you mind if I share your blog with my zynga group?
    There’s a lot of folks that I think would really appreciate
    your content. Please let me know. Thank you

  2. **hepatoburn**

    hepatoburn is a high-quality, plant-forward dietary blend created to nourish liver function, encourage a healthy metabolic rhythm, and support the bodys natural fat-processing pathways.

  3. **tonic greens**

    tonic greens is a cutting-edge health blend made with a rich fusion of natural botanicals and superfoods, formulated to boost immune resilience and promote daily vitality.

  4. **oradentum**

    oradentum is a comprehensive 21-in-1 oral care formula designed to reinforce enamel, support gum vitality, and neutralize bad breath using a fusion of nature-derived, scientifically validated compounds.

  5. **biodentex**

    biodentex is an advanced oral wellness supplement made for anyone who wants firmer-feeling teeth, calmer gums, and naturally cleaner breath over timewithout relying solely on toothpaste, mouthwash, or strong chemical rinses.

  6. Retour aux sources avec notre gamme de produits naturels et bio. Huiles essentielles, phytotherapie et complements alimentaires de qualite. Des solutions douces pour prendre soin de votre corps au quotidien. Commandez vos allies bien-etre en toute simplicite.careconnectclinic

  7. Join the millions winning momentous on fan maxxwins – the #1 tangible pelf casino app in America.
    Pick up your $1000 OPERATE IT AGAIN gratuity and turn every twirl, hand and roll into real cash rewards.
    Firm payouts, huge jackpots, and continuous effect – download FanDuel Casino now and start playing like a pro today!

  8. FanDuel Casino is America’s #1 online casino, delivering non-stop thrills with ignition casino complaints , restricted slots like Huff N’ Word, and spend retailer act truthful at your fingertips. Hip players stir 500 Bonus Spins supplementary $40 in Casino Perk just in return depositing $10—bonus up to $1,000 fail on first-day reticle losses. Province all Thrillionaires: join for the nonce, play your style, and upon every interest into epic wins!

  9. Έτοιμος για μεγάλες νίκες; Γίνε μέλος στο Betano https://betanogame.org/el/ σήμερα και ξεκλείδωσε ένα απίστευτο πακέτο καλωσορίσματος αξίας έως €500. Παίξε τα πιο καυτά παιχνίδια καζίνο από NetEnt, Pragmatic Play και Evolution Gaming. Με γρήγορες αναλήψεις και υποστήριξη 24/7, η περιπέτειά σου ξεκινά τώρα στο Betano.

  10. Arialief is a carefully developed dietary supplement designed to naturally support individuals dealing with sciatic nerve discomfort while promoting overall nerve wellness.

  11. Visium Pro is an advanced vision support formula created to help maintain eye health, sharpen visual performance, and provide daily support against modern challenges such as screen exposure and visual fatigue.

  12. ViriFlow is a dietary supplement formulated to help maintain prostate, bladder, and male reproductive health. Its blend of plant-based ingredients is designed to support urinary comfort and overall wellness as men age.

  13. The post is absolutely fantastic! Lots of great info and inspiration, both of which we all need! Also like to admire the time and effort you put into your website and detailed info you offer! I will bookmark your website!

  14. Hey very cool site!! Man .. Beautiful .. Amazing .. I will bookmark your website and take the feeds also…I’m happy to find so many useful information here in the post, we need develop more strategies in this regard, thanks for sharing. . . . . .

  15. Hello there, just became aware of your blog through Google, and found that it is truly informative. I am going to watch out for brussels. I will appreciate if you continue this in future. Lots of people will be benefited from your writing. Cheers!

  16. Woah this is just an insane amount of information, must of taken ages to compile so thanx so much for just sharing it with all of us. If your ever in any need of related information, just check out my own site!

  17. Hi, possibly i’m being a little off topic here, but I was browsing your site and it looks stimulating. I’m writing a blog and trying to make it look neat, but everytime I touch it I mess something up. Did you design the blog yourself?

  18. If most people wrote about this subject with the eloquence that you just did, I’m sure people would do much more than just read, they act. Great stuff here. Please keep it up.

  19. I like the helpful information you provide in your articles. I’ll bookmark your blog and check again here frequently. I am quite certain I’ll learn many new stuff right here! Best of luck for the next!

  20. Unquestionably believe that which you said. Your favorite reason seemed to be on the net the easiest thing to be aware of. I say to you, I certainly get annoyed while people consider worries that they plainly don’t know about. You managed to hit the nail on the head. Will probably be back to get more. Thanks

  21. I’ve tried many platforms, but Jai Club is the most reliable in India right now. The withdrawals are fast, and the interface is much better than the clones. You can check it out at https://jaiclubofficial.in.net/.
    If you want a secure experience for Wingo and Color Prediction, Jai Club Official is the only one I trust. I’ve been a member for months and it’s always consistent. Jai Club Login is easy and the 24/7 support is actually helpful.

  22. It is perfect time to make some plans for the future and it is time to be happy. I’ve read this post and if I could I want to suggest you some interesting things or suggestions. Perhaps you can write next articles referring to this article. I wish to read more things about it!

  23. Substantially, the post is really the best on this laudable topic. I concur with your conclusions and will eagerly watch forward to your future updates.Just saying thanx will not just be enough, for the wonderful lucidity in your writing.

  24. I thought it was going to be some boring old post, but I’m glad I visited. I will post a link to this site on my blog. I am sure my visitors will find that very useful.

  25. Nice read, I just passed this onto a colleague who was doing some research on that. And he just bought me lunch as I found it for him smile Therefore let me rephrase that: Thank you for lunch!

  26. I like to spend my free time by scaning various internet recourses. Today I came across your site and I found it is as one of the best free resources available! Well done! Keep on this quality!

  27. I wanted to check up and let you know how, a great deal I cherished discovering your blog today. I might consider it an honor to work at my office and be able to utilize the tips provided on your blog and also be a part of visitors’ reviews like this. Should a position associated with guest writer become on offer at your end, make sure you let me know.

  28. Nice blog here! Also your web site loads up very fast! What host are you using? Can I get your affiliate link to your host? I wish my web site loaded up as fast as yours lol

  29. luck8 là nền tảng cá cược trực tuyến uy tín, hoạt động hợp pháp với giấy phép từ Curacao và PAGCOR. Nhà cái gây ấn tượng với giao diện thân thiện, công nghệ mã hóa SSL 256-bit an toàn, tốc độ xử lý giao dịch nhanh chóng cùng nhiều chương trình khuyến mãi hấp dẫn. Ngoài ra, Luck8 còn cung cấp hơn 2000 trò chơi đa dạng từ các nhà phát hành hàng đầu và dịch vụ hỗ trợ khách hàng 24/7 chuyên nghiệp.

  30. Im impressed. I dont think Ive met anyone who knows as much about this subject as you do. Youre truly well informed and very intelligent. You wrote something that people could understand and made the subject intriguing for everyone. Really, great blog youve got here.

  31. Hi there! I just wanted to ask if you ever have any trouble with hackers? My last blog (wordpress) was hacked and I ended up losing several weeks of hard work due to no back up. Do you have any solutions to protect against hackers?

  32. Surprisingly good post. I really found your primary webpage and additionally wanted to suggest that have essentially enjoyed searching your website blog posts. Whatever the case I’ll always be subscribing to your entire supply and I hope you jot down ever again soon!

  33. I like the helpful information you provide in your articles. I’ll bookmark your blog and check again here frequently. I am quite certain I’ll learn many new stuff right here! Best of luck for the next!

  34. It is perfect time to make some plans for the future and it is time to be happy. I’ve read this post and if I could I want to suggest you some interesting things or suggestions. Perhaps you can write next articles referring to this article. I wish to read more things about it!

  35. Took me time to read all the comments, but I really enjoyed the article. It proved to be Very helpful to me and I am sure to all the commenters here It’s always nice when you can not only be informed, but also entertained I’m sure you had fun writing this article.

  36. Greetings! This is my first visit to your blog! We are a collection of volunteers and starting a new initiative in a community in the same niche. Your blog provided us beneficial information. You have done a wonderful job!

  37. Hello, I think your blog might be having browser compatibility issues. When I look at your website in Chrome, it looks fine but when opening in Internet Explorer, it has some overlapping. I just wanted to give you a quick heads up! Other than that, awesome blog!

  38. Amazing! Your site has quite a few comment posts. How did you get all of these bloggers to look at your site I’m envious! I’m still studying all about posting articles on the net. I’m going to view pages on your website to get a better understanding how to attract more people. Thank you!

  39. 소액결제현금화는 휴대폰의 월 소액결제 한도(최대 100만~200만원)를 이용해 상품권이나 디지털 콘텐츠를 구매한 뒤, 이를 전문 업체에 수수료를 떼고 팔아 현금으로 바꾸는 행위입니다.

  40. Amazing! Your site has quite a few comment posts. How did you get all of these bloggers to look at your site I’m envious! I’m still studying all about posting articles on the net. I’m going to view pages on your website to get a better understanding how to attract more people. Thank you!

  41. I dont think Ive caught all the angles of this subject the way youve pointed them out. Youre a true star, a rock star man. Youve got so much to say and know so much about the subject that I think you should just teach a class about it

  42. I have to say this post was certainly informative and contains useful content for enthusiastic visitors. I will definitely bookmark this website for future reference and further viewing. cheers a bunch for sharing this with us!

发表评论

您的邮箱地址不会被公开。 必填项已用 * 标注

滚动至顶部