The ENCODEURL function encodes a string as a valid URL component by replacing unsafe ASCII characters with a "%" followed by two hexadecimal digits.
Note: This function is mainly used for web requests in Excel web services and is available only in Excel for Office 365 and Excel Online.
=ENCODEURL(text)
=ENCODEURL("https://example.com/search?q=excel functions")
Result: "https%3A%2F%2Fexample.com%2Fsearch%3Fq%3Dexcel%20functions"
The FILTERXML function parses XML data and returns specific data from the XML using an XPath query.
Important: The XML must be well-formed, and the function is available only in Windows Excel.
=FILTERXML(xml, xpath)
=FILTERXML("<root><name>John</name><name>Alice</name></root>", "//name")
Result: {"John","Alice"} (as an array)
The WEBSERVICE function retrieves data from a web URL. It returns the raw XML or text data from the response.
Note: Only available in Excel for Windows, and security settings may block some requests.
=WEBSERVICE(url)
=WEBSERVICE("https://api.exchangerate-api.com/v4/latest/USD")
Result: Returns the JSON or XML response as plain text from the API (e.g., exchange rates for USD).
Go to View β Freeze Panes to keep a row or column visible while scrolling.
Select data β Click Insert β Chart β Choose a chart type (bar, line, pie, etc.).
=IF(A1>10, "High", "Low") returns "High" if A1 is greater than 10; otherwise, it returns "Low".
Relative (A1): Changes when copied.
Select data β Click Insert β PivotTable β Choose where to place it.
VLOOKUP: Searches vertically in columns.
Click File β Save As, choose a location, enter a filename, and select a format (e.g., .xlsx, .csv).
Select column β Click Data β Text to Columns β Choose delimiter (e.g., comma, space).
Use =SUM(A1:A5) to add values in the range A1 to A5.
Use =COUNTIF(A1:A10, ">50") to count numbers greater than 50 in A1:A10.
Select data β Click Data β Remove Duplicates.
Count numbers: =COUNT(A1:A10)
Select cells β Click Conditional Formatting in the Home tab β Choose a rule (e.g., highlight values greater than 50).
Click the Pivot Table β Click Refresh under the PivotTable Analyze tab.
Select a cell β Data β Data Validation β Set rules (e.g., allow only numbers or dropdown lists).
Excel is a spreadsheet software used for data analysis, calculations, graphing, and automation.
It searches for a value in the first column of a range and returns a value from another column.
Use =A1 & " " & B1 or =CONCATENATE(A1, " ", B1).
Copyrights © 2024 letsupdateskills All rights reserved