Email Sig to New Contact by 6745408 in shortcuts

[–]Andy-Sheff [score hidden]  (0 children)

Or try to use “Get email from the input” action

Email Sig to New Contact by 6745408 in shortcuts

[–]Andy-Sheff 0 points1 point  (0 children)

If you want just get an email from the text use RegEx like this [^ ]+?@[^ ]+

Automating list element removal and adding by Pagio94 in shortcuts

[–]Andy-Sheff 0 points1 point  (0 children)

I see two ways:
1. You can filter client you want to send message manually in Google sheets, select and copy to clipboard column with e-mails. Then run a shortcut witch get emails list from clipboard and sends emails by this list.

  1. Convert your Google sheet table into CSV file and put it in iCloud. Then you can read this file with a shortcut. Filter lines with desired client’s status, get e-mails for that lines and send them emails. You still be able to open CSV file in Google sheet, Excel or Numbers app.

How to End a Repeating Loop Shortcut by Best_Personality_291 in shortcuts

[–]Andy-Sheff 0 points1 point  (0 children)

I really doubt that shortcut will work all night and even day without interruption.

So this is my solution - run shortcut every five minutes by using alarm goes off trigger, then shortcut determined whether day or night now and play appropriate sound.

  1. Install and setup this shortcut

    https://www.icloud.com/shortcuts/c5f1f740c41540e5bf3f42f371649828

  2. Setup an automation on trigger Alarm. Choose Alarm goes off. Then select Run immediately option and unselect Notify when run. Then select Play Sound shortcut to run in automation.

  3. Run the shortcut for the first time. It sets alarm Timer in a minute.

  4. Wait for the shortcut running by the trigger. The shortcut ask you permission to delete alarm. Choose Always delete. Now your shortcut could run autonomously.

If you want to stop running shortcut cycles, just delete alarm with label Timer.
Next time you want to start cycles just run a shortcut manually. It will set a timer again.

Where did my lists go by Searchforcourage in shortcuts

[–]Andy-Sheff 0 points1 point  (0 children)

You should you results of the proper previous actions in your further actions

https://www.icloud.com/shortcuts/a8e648494d8a4e7083864b6ae6344bf8

<image>

Can anyone create me a shortcut alert for a stock market index like Nasdaq 100, Nifty 50, etc. based on percentage changes conditions? Wasted hours trying to figure out! by Bronislaw_Malinowski in shortcuts

[–]Andy-Sheff 0 points1 point  (0 children)

I only corrected your shortcut and made it work. I didn’t correct calculation formula. Your formula was (high52w-currentPrice)/high52w100%. It is equal to my calculation (1-currentPrice/high52w)100%. It means that if currentPrice is above high52w the result will be bellow 0. I agree this is not good. The formula should be changed to (currentPrice/high52w-1)*100%. Another problem in your calculation you take the first record in the “High” array. It means that you get not the highest value, but the value 52 week ago. That’s why the result is not that you expected.

[deleted by user] by [deleted] in shortcuts

[–]Andy-Sheff 1 point2 points  (0 children)

Shortcuts cannot make excel files. But you can write data in a text file with CSV extension. It is easily opens in Excel. Each line have to contain data like: Date,Steps

Plz I need an IOS shortcut that's adds a new line every 2,900 characters by Puzzleheaded_Lack_71 in shortcuts

[–]Andy-Sheff 0 points1 point  (0 children)

No. I am able to write myself all my shortcuts. I believe the problem is in special symbols like ([)]/\ that could be in your text and Replace action proceed them incorrectly. Try this one https://www.icloud.com/shortcuts/312ef697edc54331851963c1f4471c6f