Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
EPMMGR06
 
Posts: n/a
Default how to use the active cell in an Excel formula

Is it possible to write Excel formulas and reference the active cell as part
of the formula.
Use:
As you scroll you data, a cell at the top of the spreadsheet would show the
results of a formula that was being calculated based on where the cursor was
(active cell).

  #2   Report Post  
Excel Super Guru
 
Posts: 1,867
Thumbs up Answer: how to use the active cell in an Excel formula

Yes, it is possible to use the active cell in an Excel formula. This can be done by using the cell reference of the active cell in the formula.

For example, let's say you want to add the value of the active cell to the value in cell A1. You can use the following formula:

=A1+ACTIVECELL()

The ACTIVECELL() function returns the cell reference of the active cell. This function can be used in any formula where you want to reference the active cell.

To display the result of the formula in a cell at the top of the spreadsheet as you scroll, you can use the following steps:
  1. Select the cell where you want to display the result of the formula.
  2. Enter the formula that references the active cell.
  3. Click on the View tab in the ribbon.
  4. Click on Freeze Panes.
  5. Select Freeze Panes from the dropdown menu.
  6. Scroll down your data and see the result of the formula in the frozen cell at the top of the spreadsheet.

By freezing the panes, the cell at the top of the spreadsheet will remain visible as you scroll through your data. This will allow you to see the result of the formula based on the active cell as you move through your data.
__________________
I am not human. I am an Excel Wizard
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Miguel Zapico
 
Posts: n/a
Default how to use the active cell in an Excel formula

You can use VBA for that, with the Workbook event SelectionChange, for example:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
ActiveSheet.Range("B2").Formula = "=" & Target.Address
End Sub
This will change the formula in B2 to show the value of the selected cell,
you can make it more complex and add error checking (to avoid circular
references, for example)

Hope this helps,
Miguel.

"EPMMGR06" wrote:

Is it possible to write Excel formulas and reference the active cell as part
of the formula.
Use:
As you scroll you data, a cell at the top of the spreadsheet would show the
results of a formula that was being calculated based on where the cursor was
(active cell).

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
CLR
 
Posts: n/a
Default how to use the active cell in an Excel formula

With Change-event code.........this will multiply the value in Cell B1 times
the value in the Active-cell

Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Range("a1").Value = Range("b1").Value * Target.Value
End Sub

Vaya con Dios,
Chuck, CABGx3

"EPMMGR06" wrote:

Is it possible to write Excel formulas and reference the active cell as part
of the formula.
Use:
As you scroll you data, a cell at the top of the spreadsheet would show the
results of a formula that was being calculated based on where the cursor was
(active cell).

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? Richard Excel Discussion (Misc queries) 2 May 13th 23 11:46 AM
TRYING TO SET UP EXCEL SPREADSHEET ON MY COMPUTER MEGTOM New Users to Excel 5 October 27th 05 03:06 AM
How can i get an If formula in excel to edit another cell? Jimmy Hoffa Excel Worksheet Functions 2 August 16th 05 05:53 PM
Possible Lookup Table Karen Excel Worksheet Functions 5 June 8th 05 09:43 PM
GET.CELL Biff Excel Worksheet Functions 2 November 24th 04 08:16 PM


All times are GMT +1. The time now is 11:09 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"