简体   繁体   中英

Need help adding date stamp to excel formula

I have created an array formula I would like to add a current date timestamp mm/dd/yy to the end of it instead of changing the date manually as shown in the formula below. Is there any way I can fit that in to this formula?

Thanks for any help with this.

Here is the formula

=J2&" "&L2&" "&O2&" "&N2&" "&"Per OM nlh 2/4/15"

尝试将公式更改为此:

=J2&" "&L2&" "&O2&" "&N2&" "&"Per OM nlh "&TEXT(TODAY(),"m/d/yy")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM