递归lambda混乱

发布于 2025-01-20 10:47:14 字数 909 浏览 0 评论 0 原文

我正在尝试使用递归 labmda 基于 randbetweeen 函数来构建计划生成器。

基本上,它需要做的事情:

  1. 基于包括本月开始和结束的其他2个单元格中的之间的之间生成一个随机日期。
  2. 查找A2#在当天的转变,如果不是“关闭”,请将单元格的值设置为那个日期。如果关闭,请产生另一个日期。

这是我凌乱的公式。当然,它不起作用,因为我仍然不确定递归lambdas如何工作。另外,我相信公式存在逻辑错误。

=LAMBDA(f,l,counter,LET(randomd,IF(counter>70,"",RandomDate(RANDBETWEEN(f,l),counter+1)),shiftlookup,TEXT(XLOOKUP(a2#,Names,XLOOKUP(randomd,Dates,Schedule!$B$3:$AE$67)),"hh:mm"),IF((shiftlookup="08:00")+(shiftlookup="16:00")+(shiftlookup="18:00"),shiftlookup,randomd+1)))

截至目前,此 lambda 不允许我使用单元格引用来调用它。循环的退出条件需要是

 IF(A2#="","",Lambda)

我不确定是否正确设置。

我正在附上一个让您查看我在做什么。

注意:有一个简单的宏嵌入来计算表,但我将其保存为无宏工作簿。

I'm trying to build a Schedule Generator using recursive LABMDA based on RANDBETWEEN function.

Basically, what it needs to do:

  1. Generate a random date using RANDBETWEEN based on 2 other cells which include start and end of the month.
  2. Lookup A2#'s shift on that day, if it's not "OFF", set the cell's value to that date. If it's off, generate another date.

This is my messy formula. Of course it does not work, because I am still not sure how recursive lambdas work. Also, I believe there is a logical error in the formula.

=LAMBDA(f,l,counter,LET(randomd,IF(counter>70,"",RandomDate(RANDBETWEEN(f,l),counter+1)),shiftlookup,TEXT(XLOOKUP(a2#,Names,XLOOKUP(randomd,Dates,Schedule!$B$3:$AE$67)),"hh:mm"),IF((shiftlookup="08:00")+(shiftlookup="16:00")+(shiftlookup="18:00"),shiftlookup,randomd+1)))

As of now, this LAMBDA doesn't let me call it using cell references. The exit condition of the loop needs to be

 IF(A2#="","",Lambda)

I'm not sure if I set it up right.

I'm attaching a sample file for you to see what I'm working on.

Note: There is a simple macro embedded to calculate the sheet, but I saved it as a macro-free workbook.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文