Most viewed questions in Others

0 votes
1 answer

Does using Wikipedia content harm a page/sites SEO rankings?

if its 2,3 sentences that your taking ...READ MORE

Feb 14, 2022 in Others by narikkadan
• 63,700 points
314 views
0 votes
0 answers
0 votes
1 answer

Trying to redo my Export Button Function on my document

You could directly publish the data to ...READ MORE

Mar 30, 2023 in Others by narikkadan
• 63,700 points
313 views
0 votes
1 answer

Excel - count if multiple words are in a cell

Try this using wildcards * with TEXTBEFORE()&nb ...READ MORE

Feb 20, 2023 in Others by Kithuzzz
• 38,010 points
313 views
0 votes
1 answer

Excel Conditional Formating to find numbers a cell with text

Try this: =OR(ISNUMBER(-MID(SUBSTITUTE(A1," ","~")&"~",seq,4))) where seq is a defined name that ...READ MORE

Jan 10, 2023 in Others by narikkadan
• 63,700 points
313 views
0 votes
1 answer

Python - how to read contents of an excel file

xlwings is an excellent library to interact with ...READ MORE

Dec 15, 2022 in Others by narikkadan
• 63,700 points
313 views
0 votes
1 answer

Googlebot is accessing .aspx pages, it should access SEO-friendly URLs only

the url mapping would be wrong that ...READ MORE

Feb 20, 2022 in Others by narikkadan
• 63,700 points
312 views
0 votes
1 answer

Excel - add all X in column and then multiply

Use countif for the count then multiply ...READ MORE

Oct 1, 2022 in Others by narikkadan
• 63,700 points
311 views
0 votes
1 answer

Create an seo and web accessibility analyzer

there are some tools which  are already ...READ MORE

Feb 12, 2022 in Others by narikkadan
• 63,700 points
311 views
0 votes
1 answer

Arrange charts position in 3x5 order

Your code was nearly complete. I believed ...READ MORE

Apr 9, 2023 in Others by narikkadan
• 63,700 points
310 views
0 votes
1 answer

Filter date with time

Try this: Sub FilterInicioDeTurnoDAY() Dim in_time ...READ MORE

Mar 19, 2023 in Others by Kithuzzz
• 38,010 points
310 views
0 votes
1 answer

Concatenate only upper case letters?

In ms365, try: The formula in B1‡: =CONCAT(TEXTSPLIT(A1,TEXTSPLIT(A1,CHAR(ROW(65:90)),,1))) ‡ If not a ...READ MORE

Feb 16, 2023 in Others by narikkadan
• 63,700 points
308 views
0 votes
1 answer

How to multi level sort an array in excel, using formulas? I am aware about the way, using SORT button on DATA tab

Use SORTBY, e.g. =SORTBY(A2:B5,A2:A5,1,B2:B5,1) Or simply&nb ...READ MORE

Jan 22, 2023 in Others by narikkadan
• 63,700 points
308 views
0 votes
1 answer

Insert Excel rows for each x in adjacent country columns to prepare Oracle Calendar Event Coverage uploadsheet

Create a table (insert > table) from ...READ MORE

Jan 14, 2023 in Others by narikkadan
• 63,700 points
308 views
0 votes
1 answer

VBA automatically agree to enable macros

Typically, there is no security alert when ...READ MORE

Oct 1, 2022 in Others by narikkadan
• 63,700 points
308 views
0 votes
0 answers

PHP Constants Containing Arrays?

This fails in my case define('DEFAULT_ROLES', array('guy', 'development ...READ MORE

Aug 5, 2022 in Others by krishna
• 2,820 points
308 views
0 votes
1 answer

Does using Wikipedia content harm a page/sites SEO rankings

you can use some referneces but if ...READ MORE

Feb 27, 2022 in Others by narikkadan
• 63,700 points
308 views
0 votes
1 answer

What are canonical URLs and how do they affect your SEO?

canonical URLs are distinct URL used to ...READ MORE

Feb 11, 2022 in Others by narikkadan
• 63,700 points
308 views
0 votes
1 answer

Problem with yoast SEO

This is (probably) not a problem of ...READ MORE

Feb 10, 2022 in Others by narikkadan
• 63,700 points
308 views
0 votes
1 answer

Find specific term in a text string and return that term in the previous column

Try: You can either hard code the ...READ MORE

Apr 10, 2023 in Others by Kithuzzz
• 38,010 points
307 views
0 votes
1 answer

Is there use for the Scroll Lock button anymore?

I use it all the time on ...READ MORE

Sep 27, 2022 in Others by narikkadan
• 63,700 points
307 views
0 votes
1 answer

what is machine learning and artificial intelligence?

Artificial intelligence (AI) is a technology that ...READ MORE

Jan 31, 2022 in Others by Edureka
• 12,690 points
307 views
0 votes
1 answer

iOS Post to Facebook shows m.facebook.com

From your Feed, tap Search Facebook at ...READ MORE

Nov 4, 2022 in Others by gaurav
• 23,260 points
306 views
0 votes
1 answer

Launch the DevTools application server in Flutter.

Hi@akhtar, After installing the DevTools in your Flutter ...READ MORE

Sep 10, 2020 in Others by MD
• 95,440 points
306 views
0 votes
1 answer

Excel - allow result to change if value is greater than

Try this: =IF(OR(C9>1200,D9>1200),E9*E$4,E9*E$3) It will determine if C9 or ...READ MORE

Apr 3, 2023 in Others by narikkadan
• 63,700 points
305 views
0 votes
1 answer

Excel: Is it possible to reorder the data in 2 columns to match up if they have a certain number of characters / a string in common?

Try this: =LET(files,A1:A4, URLs,B1:B4, f,BYROW(files,LAMBDA(r,TEX ...READ MORE

Jan 21, 2023 in Others by narikkadan
• 63,700 points
305 views
0 votes
0 answers

What is ADT? (Abstract Data Type)

Can someone explain to me what ADT ...READ MORE

May 19, 2022 in Others by Kichu
• 19,050 points
305 views
0 votes
1 answer

Automatically adding the date/time to a cell when another cell is updated AND clearing it when this cell is empty

You are looking for an IsEmpty check in your ...READ MORE

Jan 26, 2023 in Others by narikkadan
• 63,700 points
304 views
0 votes
0 answers

What all happens when we promote a read replica to separate RDS instance?

It took me more than 10 minutes ...READ MORE

Apr 10, 2022 in Others by Kichu
• 19,050 points
304 views
0 votes
0 answers

Looping through tagged resources in AWS RDS

 I'm trying to target clusters based on ...READ MORE

Apr 9, 2022 in Others by Kichu
• 19,050 points
304 views
0 votes
1 answer

Excel Desktop - Office.context.document.settings.get() didn't working

You need to call the saveAsync method of the Office.Settings interface ...READ MORE

Feb 24, 2023 in Others by narikkadan
• 63,700 points
303 views
0 votes
1 answer

How to extract text before the last "," in excel formula?

Using FILTERXML() • Formula used in cell B1 =FILTERXML("<m><b>"&SUBSTITUTE(A1,", ","</b><b>")&"</b></m>","//b[last()-1]") You can ...READ MORE

Jan 20, 2023 in Others by narikkadan
• 63,700 points
303 views
0 votes
1 answer

Insert formula in multiple excel sheets

To fill across the sheets, you can ...READ MORE

Jan 17, 2023 in Others by narikkadan
• 63,700 points
303 views
0 votes
1 answer

Textjoin with adjacent headers and rows with a twist

Try the following formula- =TEXTJOIN(" ",1,FILTER($A$1:$C$1,A2:C2<>"")&":"&FILTER(A2:C2,A2:C2<>"")) To make it ...READ MORE

Jan 10, 2023 in Others by narikkadan
• 63,700 points
303 views
0 votes
1 answer

Excel how to find the default file extension

Make a dict of xlfileformats:extensions and use ...READ MORE

Jan 5, 2023 in Others by narikkadan
• 63,700 points
303 views
0 votes
0 answers

Insert multiple rows when range contains specific text

I am trying to have a macro ...READ MORE

Dec 24, 2022 in Others by Kithuzzz
• 38,010 points
303 views
0 votes
1 answer

Use union with find

Using the Find Method With a Discontinued ...READ MORE

Mar 19, 2023 in Others by Kithuzzz
• 38,010 points
302 views
0 votes
1 answer

EXCEL: Auto number rows until value in cell

You can utilize SEQUENCE if you have ...READ MORE

Jan 20, 2023 in Others by narikkadan
• 63,700 points
302 views
0 votes
1 answer

Is it possible to get data from a webpage in real-time to an excel file?

The conventional method of obtaining data from ...READ MORE

Jan 17, 2023 in Others by narikkadan
• 63,700 points
302 views
0 votes
1 answer

Date format conversion in Excel

You appear to be misunderstanding the point: ...READ MORE

Jan 8, 2023 in Others by narikkadan
• 63,700 points
302 views
0 votes
1 answer

Concatenate columns using LEFT and RIGHT in EXCEL

It's conceivable that the Concat/Concatenate function isn't ...READ MORE

Nov 25, 2022 in Others by narikkadan
• 63,700 points
302 views
0 votes
1 answer

Counting distinct values in excel - frequency function

You can use COUNTIF to count the ...READ MORE

Oct 20, 2022 in Others by narikkadan
• 63,700 points
302 views
0 votes
1 answer

Export csv separated by columns

Define FileFormat as xlText and the file will be TAB delimited, ...READ MORE

Oct 15, 2022 in Others by narikkadan
• 63,700 points
302 views
0 votes
0 answers

How to use VIF in r?

1 I'm new to R and using caret ...READ MORE

Jun 13, 2022 in Others by Avinash
• 1,260 points
301 views
0 votes
0 answers

Stopping AWS RDS Instance to avoid payment

I set up a non-free tier instance ...READ MORE

Apr 10, 2022 in Others by Kichu
• 19,050 points
301 views
0 votes
1 answer

URL Cloaking for SEO?

You might be interested in Google's improved Flash ...READ MORE

Feb 27, 2022 in Others by narikkadan
• 63,700 points
301 views
0 votes
1 answer

Squash my last X commits together using Git

You can do this relatively easily without ...READ MORE

Feb 16, 2022 in Others by Aditya
• 7,680 points
301 views
0 votes
1 answer

why artificial intelligence

Artificial intelligence improves human efforts in terms ...READ MORE

Jan 31, 2022 in Others by Edureka
• 12,690 points
301 views
0 votes
1 answer

How to trick an Excel function that wants a column as input to accept a list of values as if these were in a column

Use VSTACK: vstack to make an array: Use it as value ...READ MORE

Mar 18, 2023 in Others by narikkadan
• 63,700 points
300 views
0 votes
1 answer

I want to make Excel read a value in Calc and copy it to my sheet in Excel

Here is the sample code that will allow ...READ MORE

Oct 27, 2022 in Others by narikkadan
• 63,700 points
300 views