How to have content shown next to a table with hidden rows excel - excel

I have a table with dropdowns that will hide certain rows. To the right of this table, I want to have some content, but can't do this as it will be hidden when these dropdowns are selected. I currently have the content to the bottom right of the sheet and have tried splitting the screen to have them both showing but this does not work either. Any ideas on how I can have the two showing side by side? Thanks!

I've gotten around this by using Text Boxes. After creating the text box, change the properties to "do not move or size".
In the picture below, there are two text boxes.
-- The first one is just static text that you copy/paste in there. This works fine as long as you have the same info displayed all the time.
-- The second one has the ability to be somewhat dynamic, where it references the contents of another cell. That cell can be anywhere (this sheet, another sheet, doesn't matter). So in this example...
Cell L1 formula: =TEXTJOIN(CHAR(10), TRUE,E1:E3)
Textbox formula: =Sheet4!L1
No matter how you filter/hide, those text boxes won't move.

Related

When the all cells are editable, unable to select row

Neither select-row work nor row-click works when the cell are editable. Anyway to get row selected?
If I click inbetween the cells then it works but it's not practicle click small space inbetween cells.
You really need to show an example of what you are trying to do. A JSFiddle would be helpful. Still if I'm following correctly what you want to add to your table layout is:
http://tabulator.info/docs/4.7/format#format-builtin
"Row Handle
The handle formatter fills the cell with hamburger bars, to be used as a row handle
{title:"Example", field:"example", formatter:"handle"}"

ms excel - data validation for 2 drop down list

I'm looking for the solution in excel data validation for 2 drop down list.
When I choose 1st drop down list 2nd drop down list will auto populate the correct value from table. If user choose 2nd drop down list 1st drop down list will auto populate the value also.
Can someone help me on this issue ?
I attach the sample file for my problem.
enter image description here
enter image description here
thanks!
Sample File
Trying to do a two way I don't think is going to work in the way you are trying so I am not surprised the examples you found were for one-way. I am open to being corrected.
You could hack around it for example using two form control listboxes linked to the same cell so a selection in one updates the other.
Then because an item might be out of view listbox underneath have two cells which use the linked cell to index back into the source lists.
In the example above, there are two list boxes from form controls in developer tab (customize ribbon > add developer tab.
Developer tab form control - 2nd from the right
You add two of these in to the sheet.
Right click format control on each one
Set the input range to the range containing your list of values for that listbox and set the linked cell e.g. G1
Ensure that whilst you select different input ranges for each list box, they should have the same linked cell e.g. G1.
Underneath the listboxes put a formula which uses the linked cell G1 to index back into the source lists for each listbox so you can retrieve the selected value and have it visible, in case not visible within listbox.
Example testing:

How to add multiple links in excel cell?

When I use ALT+ENTER I get multiple lines of text and could not format them as links. Is there any way to get multiple links in one excel cell?
You can use shapes that you can assign with a hyperlink. See https://www.extendoffice.com/documents/excel/916-excel-insert-multiple-hyperlinks.html
Via insert, you can choose a rectangular shape, insert this in the
cell.
Right click the shape and choose 'Hyperlink' and type the
address.
Go to step 1 until enough hyperlinks are created.
Links are tight to cells in Excel, the first link that it detects is the default link for a cell. You can still put :
First link (Alt +Enter), Second Link
But Still only when clicking on the cell, you will be directed to the first link.
As the "links" formatting is map with the cell and no with the text.

Excel "true-false" to checked boxes

I have an Excel spreadsheet that I'm generating from a SharePoint dashboard. It's turning my checkboxes in the SharePoint table to "true" or "false" values in the Excel spreadsheet. I wanted to know if it is possible to turn those "true" or "false" values back into checked boxes, with the appropriate check or uncheck option selected.
Any help at all is appreciated!
I strongly advise against using check boxes in Excel if you already have the data as TRUE/FALSE in a cell. Check box controls are meant to be for user forms, and even though they can be placed in the spreadsheet grid, they live in a layer on top of the spreadsheet. Yes, they can be linked to a spreadsheet cell, but this is cumbersome.
Instead of using a macro that inserts a check box for each data row you could use a helper column with a formula along the lines of
=IF([#checkBoxField],"a","r")
Then format the helper column with the Marlett font, which will show the letter "a" as a tick and the letter "r" as a cross.
Applying a formula like this will be much faster than inserting check box controls into each row and linking them to the field cells.
You can add a checkbox over a given cell, then edit its properties (Format Control --> Control Tab) and set its Cell Link property to the address of the cell; i.e. "B2". If you have too many such boolean cells, the task is tedious so you might need to automate it with VBA.
p.s. I agree with #teylyn that this shouldn't be a good choice if you have a huge column of boolean data; it adds too many shapes which is cumbersome. You should use it if the number of boolean cells is rather limited.

Excel 2007: Using Excel Tooltip to display cell data?

I can usually find an answer to the problems I'm having via a quick google search, but this one I'm struggling to even form the question in order to locate an answer.
I'm trying to find out whether it is possible to use Excel Tooltips to display cell data. For example, on mouse over: a tooltip appears displaying the cell values from selected cells, preferably with some plain text but not essential.
i.e. I have an overview table which simplifies data from another table but want said cell values to appear on mouse over.

Resources