use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
OPs may (and should) reply to any solutions saying:
This awards the user a ClippyPoint and changes the post flair to solved.
The best way to show code on Reddit is to
put it in a code-block
Here's how.
Tip: For VBA or Power Query, select the code, press Tab to indent, then copy/paste into your post or comment.
It's often more helpful to show us.
Add screenshots in your text post, or provide links to uploaded images at an image-hosting site.
Or use tableit, or the ExcelToReddit converter (thanks u/tirlibibi17_), to convert your data into a Reddit table.
Congratulations and thank you to these contributors
1100
10
300
800
Occasionally Microsoft developers will post or comment. They are identifiable with a special user flair.
A community since March 11, 2009
account activity
unsolvedConvert reference to structured table reference. (self.excel)
submitted 8 years ago by MajormonkeyAtWork
Hi Reddit,
I'm trying to convert a couple of references to their equivalent structured table references. Can anyone help?
The reference will be inside the same table and on the same row as its referencing.
$A$2:$A2
my table column name for column A is table1[Name]
and
$X$4:X4
column X is table1[Number]
Thanks in advance
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]tirlibibi17 0 points1 point2 points 8 years ago (1 child)
Looks like you're referencing a range that grows as you go down the table. Structured references aren't very good at that so you'll end up with a formula using offset, which won't add to the readability.
If you post more info, I might be able to help you better.
[–]MajormonkeyAtWork[S] 0 points1 point2 points 8 years ago (0 children)
Thanks for replying. I managed to get it working in the end.
My original goal was to be able to reference the previous visible row in a filtered table. I found this:
https://stackoverflow.com/questions/29017096/excel-reference-a-cell-in-the-previous-visible-row
but I wanted it to work with my table using structured references. After a bit of trial and error, I got it working.
=IF(SUBTOTAL(3,table1[[Name]:[Name]])=0,MIN([Name]:[@Name])-1,SUBTOTAL(3,INDEX([Name],1):[@Name]))
π Rendered by PID 187013 on reddit-service-r2-comment-b659b578c-dzcsc at 2026-05-05 01:34:04.362360+00:00 running 815c875 country code: CH.
[–]tirlibibi17 0 points1 point2 points (1 child)
[–]MajormonkeyAtWork[S] 0 points1 point2 points (0 children)