08-19-2018, 07:45 PM
(This post was last modified: 08-19-2018, 07:55 PM by AnthroHeart.)
This is much easier. This is an Excel Macro you can run.
It should be in third person, and a statement as if it's doing something at the moment.
Quote:Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)You could also simply put the intention as: Balancing your chakras
Sub Energy()
Dim i As Long
Dim s As String
Dim intention As String
Dim num_iterations As Long
Debug.Print "Starting sending"
intention = InputBox("What is your intention?", , "Sending Heart Chakra Energy from Source to me")
num_iterations = InputBox("How many Iterations?", , 10000)
For i = 1 To num_iterations
Cells(1, 1).Value = intention & ", Iteration #" & i & " / " & num_iterations
Sleep (100)
DoEvents
Next i
Debug.Print "Done " & intention
End Sub
It should be in third person, and a statement as if it's doing something at the moment.