値を所得→各条件に当てはまる個数を書き込みの方法

↓のA列にある値が5未満の個数、5以上の個数、10以上の個数をカウントする
image

↓結果このようにB列に書き込みたいです
image

分かる方いらしたら教えてください!

Hi @TAKAHITO,

Try this xaml:
ExcelDataTable.xaml (15.5 KB)

Sample output - Please refer Sheet2.
Data.xlsx (10.8 KB)

Thanks!

1 Like

ありがとうございます!

cint(Regex.Match(row(0).ToString, "\d+").Value)

↑これについて解説していただいてもよろしいでしょうか?

row(0).tostring = 5未満 or 5以上 or 10以上

  1. From the above string, we need only integer(5 or 10) right.
  2. For getting only integers, i’m using regex using this expression “\d+”.
  3. Once we get numbers as string finally converting it to integer using cint function

Note: https://regex101.com/ - To learn more on regex…!

Thanks!

1 Like

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