Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要对街道地址进行分类,以便人们在街道两侧行走。因此我需要先订购偶数地址号码,然后是奇数号码。
我已经设法按街道名称进行排序,但现在如何按街道内的偶数和赔率对数据进行排序?
创建一个名为 EvenOrOdd 的新公式:
ToNumber({addressNumber}) MOD 2
当数字为偶数时返回 0,当数字为奇数时返回 1。然后在现有组中添加一个新组,并根据 EvenOrOdd 进行排序。