Question about using programs in spreadsheet
|
07-27-2023, 05:12 PM
Post: #1
|
|||
|
|||
Question about using programs in spreadsheet
Hello everyone,
Does anyone know if it is possible to use a custom program from a spreadsheet cell? I have looked and didn’t find any way to do it, but maybe I am missing something? Thank you very much |
|||
07-27-2023, 08:13 PM
(This post was last modified: 07-27-2023 08:24 PM by froehlic.)
Post: #2
|
|||
|
|||
RE: Question about using programs in spreadsheet
If I understand that correct: You want to call a program inside a cell?
You can do that like this: Code:
Now you can put your values for a and b in spreadsheet cells, lets say A1 and A2. Define A3 as: =FF_min(A1, A2) The value in A3 is always the minimum of A1 and A2. This as a simple example. Your program can be whatever, for this special case you have to return a single object that can be stored in a cell. You also can manipulate other cells in your program: Code:
Hope that's useful for you. |
|||
07-28-2023, 02:14 AM
Post: #3
|
|||
|
|||
RE: Question about using programs in spreadsheet
(07-27-2023 08:13 PM)froehlic Wrote: If I understand that correct: You want to call a program inside a cell?This is great exactly what I was looking for, thank you very much |
|||
07-29-2023, 08:00 PM
Post: #4
|
|||
|
|||
RE: Question about using programs in spreadsheet
(07-27-2023 08:13 PM)froehlic Wrote: Where is that use of Cell() documented? I cannot find it in documentation, manual nor does it work in a program. Where should it be used? |
|||
07-29-2023, 09:38 PM
Post: #5
|
|||
|
|||
RE: Question about using programs in spreadsheet
It's in the online help under:
Main/HP apps/Spreadsheet app/Spreadsheet Variables/Cell References and Cell |
|||
07-30-2023, 04:52 PM
Post: #6
|
|||
|
|||
RE: Question about using programs in spreadsheet | |||
07-30-2023, 05:41 PM
Post: #7
|
|||
|
|||
RE: Question about using programs in spreadsheet
(07-30-2023 04:52 PM)matalog Wrote:(07-29-2023 09:38 PM)roadrunner Wrote: It's in the online help under: It’s the manual that comes in the calculator if you click help button |
|||
07-30-2023, 07:26 PM
Post: #8
|
|||
|
|||
RE: Question about using programs in spreadsheet
That's great, thanks.
|
|||
07-30-2023, 10:40 PM
Post: #9
|
|||
|
|||
RE: Question about using programs in spreadsheet
(07-30-2023 05:41 PM)nickapos Wrote:I assume he meant the On device offline help.(07-30-2023 04:52 PM)matalog Wrote: I'd like to look at it, what is the online help? Stephen Lewkowicz (G1CMZ) https://my.numworks.com/python/steveg1cmz |
|||
08-03-2023, 07:12 AM
Post: #10
|
|||
|
|||
RE: Question about using programs in spreadsheet
(07-29-2023 08:00 PM)matalog Wrote: Where is that use of Cell() documented? I cannot find it in documentation, manual nor does it work in a program. Where should it be used? A little more details on that topic. If you only want to access a cell of any spreadsheet in a HPPL program or even in any other App or Homescreen you can use it like Code:
Spreadsheet could be the "original" spreadshheet or any other new App based on spreadsheet. You can save a new spreadsheet i.E. as SpA (do not use a number at the end of the name!). Now you can access to cell C3 of that: Code:
That is very important to use links inside a spreadsheet to other spreadsheets as you would like do in Excel. BUT: If you want to loop through multiple cells in a spreadsheet, you have to use the cell function to access cells with a variable.For example: Code:
This little example sets cells A1 to A10 to the sequence from 1 to 10. With that you can do all complex calculations on your spreadsheets. Really ingenious about the Prime is the fact that you can use nearly everything from everywhere. As I said: A bug should be that you can't use Sp1.B2, this resolves in a error although you may name a spreadsheet Sp1! |
|||
08-03-2023, 02:31 PM
Post: #11
|
|||
|
|||
RE: Question about using programs in spreadsheet
This is awesome and not intuitive at all. Someone needs to piece the puzzle on their own, of have it pointed to them. Thank you very much
|
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)