分岐のご相談です

どなたか知恵をお借りしたいです。

条件分岐で処理日が「当月1~27日まではTrue それ以外はFalse」と分岐をしたいのですが、
どのように作成したらよいかわかりません。

どなたか教えていただければ幸いです。

Hi @n.prettytake

Here is the condition

Now.ToString("dd") >= "1" and Now.ToString("dd") <= "27"

Regards

1 Like

こんにちは

処理日は当日(今日)で良いでしょうか?
そうであれば以下条件で動作すると思います。

DateTime.Today.Day<=27

image

1 Like

Hi @n.prettytake

If you find solution for your query please mark it as solution to close the loop

Happy Automation

Regards

できました!

本当にありがとうございます。

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.