I am trying to come up with a way to attach a specified suffix to a string of text in Excel, but only when it matches another string.
Example:
I have a list that contains several domains:
xyz.blogspot.com,
abc.blogspot.co.uk,
edf.blogspot.co.jp
For each of these, I want to strip off the suffix (.com, .co.uk etc) and apply a new suffix from a list I have (.com, .co.uk, .co.jp, .in, .br etc).
The idea is that when I see xyz.blogspot.com, I can instantly and automatically create all possible variations of that domain name.
Any help appreciated, thanks.
I have a feeling this will not suit (but seems to answer the question):
=LEFT($A2,LEN($A$1)+FIND($A$1,A2)-1)&B$1
copied across and down to suit.
Related
Hope this is something some has a idea on how to solve
I have a folder in ShareoPoint where our team's budget files are added
Each team has a code c1, c2, c3 etc, the file name contains this code
I also have a SharePoint list with these codes with one of the columns being the email addresses of those in that team, this is a person type column, with multiple selections allowed, but this can be easily changed if it helps solution
Is it possible to build a power automate flow so when a file is added to the folder, based on the name of the file and its match on the SP list it would then send a copy of just that file to the right team
I'm familiar with attaching files on automated flows, but so far have only done so based on IF type statements, e.g. If file name contains C1 send to these people then if name contains C2 send those these, etc etc, but this is very manual when new people join a team. Hosting a list on SharePoint would allow the teams to update themselves
I did look into what others may have tried, but can't find anything which seems to match my two biggest issues
how to extract that part of the file name
once I do that how I match against the SharePoint list to generate the right set of email addresses
Thanks in advance
Angela
I'm making a dependent drop down list. I've made it using named ranges. All my items and sub-items work without a problem. Except the one item called "Rolls Royce". I have multiple multiple word items with the same syntax that do what they need to do. If I change the words it works fine. Can someone please explain if this is some kind of secretly protected/banned word?
** Still haven't found a solution. I tried other double words and the give me no issue. I found somewhere that "R" is reserved but adding "_R" should solve it. Any suggestions?
I find that for names etc then the space between words has to be avoided.
I would use "Rolls_Royce" in that case as it reads the same.
I am creating a Saved Search for my team where users can filter by different parameters but the most important one is a ‘Keyword’ field where we have multiple text strings separated by commas. Eg: One could be (Horses, Apples, Cows, Carrots, Balloons) and another could be (Apples, Cake, Silver, Horses, Bananas)
I want to be able to use the free text search field to look up all rows where I can find a relevant entry.
Eg. Let’s say I type “Apples” and “Horses”. I want to see all entries where these are found together.
I have tried setting the criteria to “Contains” but can’t seem to use operators in the input field. I have also tried to use expressions but got You cannot use an expression builder criteria filter as an available filter" as an error.
I’m not familiar with NetSuite but willing to learn. I was able to create this in Google Sheets. Since we already store our information on NS already, I want to find a way to do it there. Is there a way to achieve this?
Thank you.
When you create the saved search, you can just specify a default value that will be used in the initial search load (e.g. contains Apples). In the Available Filters tab, select the same filter and check Show in Filter Region.
When users run the saved search, they can change the criteria by typing into the field and pressing Tab after (if you press Enter instead of Tab, the results will be downloaded into a CSV file instead of being displayed in the page). In your example, they should type 'apples%horses' then press Tab.
Additional reference: https://www.sikich.com/insight/using-formula-values-as-available-filters-in-netsuite-saved-searches/
Update:
Use 'has keywords' instead of 'contains' in the filter. When viewing the results, separate keywords with a comma. Example: 'apples, horses'
If I have a tiddler named "X", I know I can make a list of all tiddlers tagged with "X" by using <<list-links filter:"[tag[X]] +[sort[title]]">>. Is there a way to make a no-brainer macro which automatically finds all tiddlers nested under the current tiddler without manually specifying the title field?
Use this in your macro: <<list-links filter:"[tag<currentTiddler>] +[sort[title]]">>
Or another one: <<list-links "[all[current]tagging[]]">>
list-links is what it says on the tin, it returns a list of all links in the wiki. The filter then reduces it to links requested, and the sort arranges it into a desired order. The square brackets define what sequence is to be followed, clarifying the grammar. The OP'S question filters for particular tags (ie tag[ToDo] is a filter for tiddlers tagged with ToDo) which are then sorted by title into alphabetic order.
Likewise, in the second example, is a macro delivering the name of the current tiddler instead of the explicit name of the tag, so if the tiddler's name is ToDo then it will display the names of every tiddler marked ToDo. If you'd defined a ToDoPriority field in the tiddler definition, and sorted on that, you'd have an instant batting order. Job done, delete the tag, it's gone from the list.
And let's face it, if you need a priority list, you also need the opposite, automated prevarication, an identical tiddler named "Pending". You can even blame the computer. Computer he say, Rot in hell.
The third case does the same with open tiddlers.
For a more general explanation, refer to Grok Tiddlywiki
I have a document in Google Docs which has a lot of images numbered sequentially. Every time I add a new image in the middle of the document I have to renumber all the image numbers along the document along with its references. How could I renumber the following images automatically, like we can do in LibreOffice using variables?
so far it is not possible. You could take a look at Google Apps Scripts to create a macro that does that: https://developers.google.com/apps-script/
I've just finished creating a Google Docs Add-on (https://support.google.com/docs/answer/3641454?hl=en) that can number images and tables. It is going through the process of certification by Google and I hope to publish it soon :)
Regards
You can use Crossref. The way it works is that you higlight the text referring to a figure, which can be anything e.g. "Figure n" as the add on will replace it.
You then use Ctrl + K to make this into a link to a non existent bookmark such as "#figur_heights" where you can put any text you like after the "#figur_..." Do that for all the figures in the document and when you refer to a figure use an identical non existent bookmark, except it starts as "#fig_..." e.g. "#fig_heights". In this way it can number the figures consecutively and use matching numbers for the in text references.
Finally you then need to go to Add ons > Crossref > Update and it will go through and update all the text for those bookmarks to the sequentially numbered Figure 1, Figure 2 etc. You need to do that whenever you change the order of the figures in your document, add a new reference etc, anything that will change the way the figures are numbered.