Skip to content
Home » [NEW] Excel INDIRECT Function | indirect – NATAVIGUIDES

[NEW] Excel INDIRECT Function | indirect – NATAVIGUIDES

indirect: คุณกำลังดูกระทู้

What is the Excel INDIRECT Function?

The Excel INDIRECT Function returns a reference to a range. The INDIRECT function does not evaluate logical tests or conditions. Also, it will not perform calculations. Basically, this function helps lock the specified cell in a formula. Due to this, we can change a cell reference within a formula without changing the formula itself.

One advantage of this function is that the indirect references won’t change even when new rows or columns are inserted in the worksheet. Similarly, references won’t change when we delete existing ones.

 

Formula

=INDIRECT(ref_text, [a1])

 

Where:

ref_text is the reference supplied as text

a1 is the logical value

 

The type of reference, contained in the ref_text argument, is specified by a1.

When a1 is TRUE or is omitted, then ref_text is interpreted as an A1-style cell reference.

When a1 is FALSE, then ref_text is treated as an R1C1 reference.

A1 style is the usual reference type in Excel. It is preferable to use A1 references. In this style, a column is followed by a row number.

R1C1 style is completely opposite of A1 style. Here, rows are followed by columns. For example, R2C1 refers to cell A2 which is in row 2, column 1 in a sheet. If there is no number after the letter, then it means we are referring to the same row or column.

To learn more, launch our free Excel crash course now!

 

Example of Excel INDIRECT in action

Let’s understand the formula through an example. Suppose A1 = 32 and using the INDIRECT function, we give reference A1 as shown below:

 

 

In the above example, the INDIRECT function converted a text string into a cell reference. The INDIRECT function helps us put the address of one cell (A1 in our example) into another as a usual text string, and then get the value of the first cell by acknowledging the second.

 

How is the INDIRECT function useful to Excel users?

Yes, it is indeed a useful function. Let’s take a few examples to understand the merits of the INDIRECT function.

For an array of numbers:

 

 

When I give the formula Indirect(“D”&4), I will get 8. This is so as it will refer to D4.

 

 

When I use the formula INDIRECT(“E” & ROW() ), I used the EXCEL ROW function to return the reference to the current row number (i.e., 3), and used this to form part of the cell reference. Therefore, the Indirect formula returns the value from cell E3.

 

 

When I use the formula SUM( INDIRECT( “C4:E4” ) ), the Indirect function returns a reference to the range C4:E4, and then passes this to Excel’s SUM function. The SUM function, therefore, returns the sum of cells C4, D4, and E4, that is (4 + 8 + 9).

 

 

Similarly, when I use the formula AVERAGE ( INDIRECT( “C5:E5” ) ), the INDIRECT function returns a reference to the range C5:E5, and then passes this to Excel’s AVERAGE function.

 

 

The usefulness of Excel’s INDIRECT function is not just limited to building “dynamic” cell references. In addition, it can also be used to refer to cells in other worksheets.

To learn more, launch our free Excel crash course now!

 

How to lock a cell reference using INDIRECT function

Generally, when we add or delete rows or columns in Excel, the cell references change automatically. If you wish to prevent this from happening, the INDIRECT function is quite useful.

In the screenshot below, I used the INDIRECT function for A2 and gave a plain reference for A3.

 

 

 

When I insert a new column, what will happen? The cell equal to the logical operator still returns 20, as its formula was automatically changed to =B3.

However, the cell with the INDIRECT formula now returns 0, because the formula was not changed when a new row was inserted and it still refers to cell A1, which is currently empty:

 

 

 

So the Excel INDIRECT function would be useful in a scenario when we don’t want the formula to get changed automatically.

 

 

Free Excel Course

To keep learning about Excel functions and developing your skills, check out our Free Excel Crash Course!  Learn how to create more sophisticated financial analysis and modeling to become a successful financial analyst.

 

 

Additional resources

Thanks for reading CFI’s guide to the important Excel INDIRECT function! By taking the time to learn and master these functions, you’ll significantly speed up your financial analysis. To learn more, check out these additional CFI resources:

  • Excel Functions for Finance

    Excel for Finance

    This Excel for Finance guide will teach the top 10 formulas and functions you must know to be a great financial analyst in Excel.

  • Advanced Excel Formulas Course
  • Advanced Excel Formulas You Must Know

    Advanced Excel Formulas Must Know

    These advanced Excel formulas are critical to know and will take your financial analysis skills to the next level. Download our free Excel ebook!

  • Excel Shortcuts for PC and Mac

    Excel Shortcuts PC Mac

    Excel Shortcuts – List of the most important & common MS Excel shortcuts for PC & Mac users, finance, accounting professions. Keyboard shortcuts speed up your modeling skills and save time. Learn editing, formatting, navigation, ribbon, paste special, data manipulation, formula and cell editing, and other shortucts

[Update] How to use the Excel INDIRECT function | indirect – NATAVIGUIDES

The INDIRECT function returns a valid cell reference from a given text string. INDIRECT is useful when you need to build a text value by concatenating separate text strings that can then be interpreted as a valid cell reference.

INDIRECT takes two arguments, ref_text and a1. Ref_text is the text string to evaluate as a reference. A1 indicates the reference style for the incoming text value. When a1 is TRUE (the default value), the style is “A1”. When a1 is FALSE, the style is “R1C1”. For example:

=

INDIRECT

(

"A1"

)

// returns reference like =A1

=

INDIRECT

(

"R1C1"

,

FALSE

)

// returns reference like =R1C1

The purpose of INDIRECT may at first seem baffling (i.e. Why use text when you can just provide a proper reference?) but there are many situations where the ability to create a reference from text is useful, including:

  • A formula that needs a variable sheet name
  • A formula that can assemble a cell reference from bits of text
  • A fixed reference that will not change even when rows or columns are deleted
  • Creating numeric arrays with the ROW function in complex formulas

Note: INDIRECT is a volatile function and can cause performance problems in large or complex worksheets. Use with care.

Example #1 – Variable worksheet name

In the example shown above, INDIRECT is set up to use a variable sheet name like this:

=

INDIRECT

(

B5

&

"!A1"

)

// sheet name in B6 is variable

The formula in B5, copied down, concatenates the text in B5 to the string “!A1” and returns the result to INDIRECT. The INDIRECT function then evaluates the text and converts it into a proper reference. The results in C5:C9 are the values from cell A1 in 5 sheets listed in column B. 

The formula is dynamic in that responds to the values in column B. In other words, if a different sheet name is entered in column B5, the value from cell A1 in the new sheet is returned. With the same approach, you could allow a user to select a sheet name with a dropdown list, then construct a reference to the selected sheet with INDIRECT.

Note: sheet names that contain punctuation or space must be enclosed in single quotes (‘), as explained in this example. This is not specific to the INDIRECT function; the same limitation is true in all formulas.

Example #2 – variable lookup table

In the worksheet below, VLOOKUP is used to get costs for two vendors, A and B. Using the vendor indicated in column F, VLOOKUP automatically uses the correct table:

The formula in G5 is:

=

VLOOKUP

(

E5

,

INDIRECT

(

"vendor_"

&

F5

),

2

,

0

)

Read the full explanation here.

Example #3 – Fixed reference

The reference created by INDIRECT will not change even when cells, rows, or columns are inserted or deleted. For example, the formula below will always refer to the first 100 rows of column A, even if rows in that range are deleted or inserted:

=

INDIRECT

(

"A1:A100"

)

// will not change

Example #4 – Generate numeric array

A more advanced use of INDIRECT is to create a numeric array with the ROW function like this:

ROW

(

INDIRECT

(

"1:10"

))

// create {1;2;3;4;5;6;7;8;9;10}

One use case is explained in this formula, which sums the bottom n values in a range. You may also run into ROW + INDIRECT idea in more complex formulas that need to assemble a numeric array “on-the-fly”. One example is this formula, designed to strip numeric characters from a string.

Notes

  • References created by INDIRECT are evaluated in real time and the content of the reference is displayed.
  • When ref_text is an external reference to another workbook, the workbook must be open.
  • a1 is optional. When omitted, a1 is TRUE = A1 style reference.
  • When a1 is set to FALSE, INDIRECT will create an R1C1-style reference.
  • INDIRECT is a volatile function, and can cause performance issues in large or complex worksheets.


Reported Speech


Learn all about reported speech or indirect speech!
Reported speech or indirect speech is used to report something that someone said in the past.
Practice here: http://www.teacherdiane.com/youtube/page/1
Learn English on Skype: http://www.teacherdiane.com
Follow Teacher Diane on Facebook: http://www.facebook.com/teacherdianeESL

นอกจากการดูบทความนี้แล้ว คุณยังสามารถดูข้อมูลที่เป็นประโยชน์อื่นๆ อีกมากมายที่เราให้ไว้ที่นี่: ดูเพิ่มเติม

Cách dùng hàm Indirect và ví dụ trong Excel


Hàm Indirect cách sử dụng và ví dụ ứng dụng chi tiết
▷ Khoá học Excel: http://bit.ly/ex101_dtnguyen
▷ Khoá học VBA: http://bit.ly/vba101_dtnguyen
▷ Theo dõi Facebook cá nhân: https://fb.me/kuldokk
▷ Blog cá nhân: https://blog.hocexcel.online

Cách dùng hàm Indirect và ví dụ trong Excel

【Excel】INDIRECT関数が使えるとできることがうんと広がる!


INDIRECT関数は初心者にはちょっと難しいですが使いこなせればエクセルで実現したいことの自由度が格段にアップします!
INDIRECT関数をリストで使うケース
📺https://youtu.be/gVkUWTQCwc
<おすすめ動画紹介>
💸通信の基礎と損しないための知識
Macのデメリット➡https://youtu.be/tQkSCYIgoQ
光回線の選び方➡https://youtu.be/HJK9OfmaXgw
💻マクロ・VBAを学びたいならまずはこの動画!
入門講座➡https://youtu.be/UwJbj0zsyc
VBEの設定➡https://youtu.be/9lQslW8UHpM
📗Excelがはじめての方はこちらがおすすめ
動画1本で基礎がわかる➡https://youtu.be/Ay1cpehksq8
計算式の入れ方➡https://youtu.be/LiJYuXKExek
関数の基本➡https://youtu.be/tczFFl2lgJM
🎓覚えると絶対役立つExcel知識
テーブル➡https://youtu.be/heiTq5cXYAc
スピル➡https://youtu.be/EQmcVCvGipI

【Excel】INDIRECT関数が使えるとできることがうんと広がる!

Indirect Object | Award Winning Indirect Objects and Direct Objects Teaching Video


Direct Objects and Indirect Objects This video briefly reviews and builds upon Identifying Direct Objects. Students are led through a procedure to find the subject, verb, and direct object of sentences, revealing the indirect object within the process. Examples are reinforced through video imagery, auditory voiceover, and “wait time” to encourage students to participate actively in their own learning opportunity. Humor is at the heart of this video, engaging students in an entertaining way while keeping the focus educational and informative. An understanding of the relationship between nouns and verbs coupled with prior knowledge of direct objects is recommended for participation with this video resource to be optimal.
I’ve created an entire series of teaching videos to explain the components of English Language
Arts in a way that connects them to each other and to real world reading, speaking, and writing. The links for the videos in order are below. Please look for my other videos and share them with others that may find them helpful.

Nouns: https://www.youtube.com/watch?v=rJNNIXo9Dvw\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=1
Abstract Nouns: https://www.youtube.com/watch?v=napjJd6U4OU\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=3\u0026t=0s
Nouns and Verbs: https://www.youtube.com/watch?v=GAlqRDa7RvU\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=3
Verbs \”Action\” : https://www.youtube.com/watch?v=lvMFQoOk4To\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=4
Mental Action Verbs: https://www.youtube.com/watch?v=_pmsl6bA86I\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=5
Proper Nouns: https://www.youtube.com/watch?v=yuuyewH_cpI\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=6
Adjectives: https://www.youtube.com/watch?v=3GNQKah1ESY\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=7
Identifying Adjectives: https://www.youtube.com/watch?v=BuzGHIIbXI\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=8
Adverbs: https://www.youtube.com/watch?v=pRTCQTHZsVc\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=9
Pronouns: https://www.youtube.com/watch?v=BYWAzeuFYa8\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=10
Personal Pronouns: https://www.youtube.com/watch?v=f3urHChNzFk\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=11
Pronouns and Antecedents: https://www.youtube.com/watch?v=gfJ2q8LN4jo\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=12
Subject Pronouns: https://www.youtube.com/watch?v=gZ1Ix9ZYTIo\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=13
Linking Verbs and Action Verbs: https://www.youtube.com/watch?v=mzW52IjBw\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=14
Good or Well: https://www.youtube.com/watch?v=J2Qb83FYPBo\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=15
Subjects and Predicates: https://www.youtube.com/watch?v=6thm0FCDGL4\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=16
Helping Verbs: https://www.youtube.com/watch?v=tqIduVTYirA\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=17
Helping Verbs Advanced: https://www.youtube.com/watch?v=JLy_pgqGMJ8\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=18
Subjects and Predicates 2: https://www.youtube.com/watch?v=RHwBbSEZHbc\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=19
Contractions: https://www.youtube.com/watch?v=sEGPVtxesjM\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=20
Understanding Contractions: https://www.youtube.com/watch?v=xrdznzrjiF8\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=21
Contractions Practice: https://www.youtube.com/watch?v=04jOKuZG7xs\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=22
Compound Words: https://www.youtube.com/watch?v=qbaY9BhC6w\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=23
Indirect Objects: https://www.youtube.com/watch?v=_qo9H9jbdOQ\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=24
Direct Objects: https://www.youtube.com/watch?v=v1kfd480i3E\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=25
Understanding Prepositional Phrases: https://www.youtube.com/watch?v=TdPlprvTADY\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=26
Coordinating Conjunctions: https://www.youtube.com/watch?v=B9F_wwSCjI\u0026list=PLQYW7tmICdoorK3Eej76awK5L6hYammQ5\u0026index=27

Indirect Object | Award Winning Indirect Objects and Direct Objects Teaching Video

hàm vlookup trong excel 2010 để làm gì và cách sử dụng đúng


hàm vlookup trong excel 2010 để làm gì và cách sử dụng đúng, video giúp bạn hiểu cách dùng hàm vlookup để học excel 2010 online. https://youtu.be/VcsVUplSVhE
Hàm vlookup dùng để dò tìm một giá trị nào đó trong một bảng dữ liệu, nếu tìm thấy dữ liệu phù hợp thì vlookup sẽ đến một ô trong cùng dòng nhưng thuộc một cột được chỉ định dựa theo một phương pháp dò tìm cụ thể. Khi sử dụng vlookup bạn phải khai báo 4 đối số (argument)theo đúng cú pháp mà excel qui định để có kết quả chính xác nhất.
+ Đăng ký kênh:https://goo.gl/X1AF2l
+ Xem các video đã đăng trên kênh photoshop for everyone:https://goo.gl/yGCtlV
+ Xem các video hướng dẫn lý thuyết photoshop(QUAN TRỌNG):https://goo.gl/0i3qov
+ Xem các video về hướng dẫn thực hành photoshop: https://goo.gl/cHshu7
Xem thêm các video về photoshop:
+ Hướng dẫn sử dụng photoshop cs6 để thiết kế ánh sáng ảnh nội thất: https://goo.gl/2f3byX
+ Cách sử dụng photoshop để thay đổi màu sắc cho xe môt tô: https://goo.gl/nqcyub
+ Hướng dẫn ghép ảnh sử dụng photoshop tách nền mây: https://goo.gl/Ia4IpU
+ Video chỉnh sửa ảnh chuyển trắng đen thành màu: https://goo.gl/Dfc1U7
+ Chỉnh sửa ảnh đẹp chân dung bằng photoshop: https://goo.gl/0md9Bc
+ Ghép ảnh dùng pen tool trong photoshop cs6: https://goo.gl/FXkXrq
+ Ghép hình ảnh tách tóc bằng photoshop: https://goo.gl/UOgHdz
+ Chỉnh sửa ảnh khuôn mặt sử dụng photoshop cs6: https://goo.gl/ewaMzt
Trang kênh photoshop for everyone sẽ bổ sung thêm các bài chia sẻ, hướng dẫn về cách sử dụng một số phần mềm như excel, word và một số ứng dụng khác như internet…
Mọi vấn đề về quyền sử dụng video này hoặc trên kênh này xin liên hệ email: [email protected]

hàm vlookup trong excel 2010 để làm gì và cách sử dụng đúng

นอกจากการดูบทความนี้แล้ว คุณยังสามารถดูข้อมูลที่เป็นประโยชน์อื่นๆ อีกมากมายที่เราให้ไว้ที่นี่: ดูบทความเพิ่มเติมในหมวดหมู่LEARN FOREIGN LANGUAGE

ขอบคุณที่รับชมกระทู้ครับ indirect

Leave a Reply

Your email address will not be published. Required fields are marked *