View Single Post
 
Old 09-14-2024, 01:30 AM
Alansidman's Avatar
Alansidman Alansidman is offline Windows 11 Office 2021
עַם יִשְׂרָאֵל חַי
 
Join Date: Apr 2019
Location: Steamboat Springs
Posts: 115
Alansidman has a spectacular aura aboutAlansidman has a spectacular aura aboutAlansidman has a spectacular aura about
Default

The only way I see this happening is with VBA. Here is a simple VBA that does exactly what you are requesting.

Option Explicit

Code:
Sub Foo()
Dim x As Range
Set x = Range("A4")
x = Range("A1").Value
End Sub
__________________
Alan עַם יִשְׂרָאֵל חַ Using O365 v2510
Reply With Quote