仅查找单元格中特定范围之间的数字包含文本字符串
Finding Only numbers between specific range in cell contain text string
我在 google sheet.
中有一个包含以下文本字符串的单元格 A2
UAE Vacancy - Collections Field agents. Location - Dubai, Abu Dhabi Work profile- banking collections background outdoor field. Age- Below 30 years. Salary - AED 5500 + quarterly incentive and yearly bonus. Minimum 1-year of experience in collections is required in the UAE Banking industry. Candidates meeting the criteria, share their resume on
test@test.com
with subject 'Field agent' Reference -
from UAE Jobs #uaejobs #bankjobs #collectionagency #dubaijobs #hireinuae
现在在单元格 B2 中,我想提取 5500 的薪水数值。我试图用 is number 来计算它,但它不起作用。
我如何提取下一个单元格中的数字。
谢谢
尝试:
=VALUE(REGEXEXTRACT($A2, "[0-9]{3,}"))
这将提取具有 3 个或更多数字的第一个数字。
我在 google sheet.
中有一个包含以下文本字符串的单元格 A2UAE Vacancy - Collections Field agents. Location - Dubai, Abu Dhabi Work profile- banking collections background outdoor field. Age- Below 30 years. Salary - AED 5500 + quarterly incentive and yearly bonus. Minimum 1-year of experience in collections is required in the UAE Banking industry. Candidates meeting the criteria, share their resume on test@test.com with subject 'Field agent' Reference - from UAE Jobs #uaejobs #bankjobs #collectionagency #dubaijobs #hireinuae
现在在单元格 B2 中,我想提取 5500 的薪水数值。我试图用 is number 来计算它,但它不起作用。 我如何提取下一个单元格中的数字。
谢谢
尝试:
=VALUE(REGEXEXTRACT($A2, "[0-9]{3,}"))
这将提取具有 3 个或更多数字的第一个数字。