用于根据另一个单元格的值插入特定日期的宏
我有一个带有数字和字母的单元格。例如:06052022_GST_402。在此示例中,“ 06052022”部分是特定日期(2022年6月5日)。我希望宏可以识别该值的日期,并以6/5/2022的格式输入日期。
I have a cell with a string of numbers and letters. For example: 06052022_GST_402. In this example, the "06052022" part is a specific date (June 5, 2022). I want the macro to recognize the date from that value and enter the date in format 6/5/2022 into another cell.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是您可以实现这一目标的一种方法:
您也可以一对一地完成这一丑闻:
但是,这将吐出日期的字符串表示,而不是实际的日期 type ,因此它可以行动在您的工作表中愚蠢,并带有任何期望约会的下游功能。
Here's a way you can pull this off:
You could do this one in one ugly line too:
But that's going to spit out a string representation of the date, not an actual date type and so it may act goofy in your sheet with any downstream functions that are expecting a date.