<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Chandoo.org - Learn Excel &#38; Charting Online - Forums Tag: CONCATENATE - Recent Posts</title>
		<link>http://chandoo.org/forums/tags/concatenate</link>
		<description>Ask Excel and Charting Questions, Muse about Visualizations, Learn and Share - Discussion Forums - Chandoo.org</description>
		<language>en-US</language>
		<pubDate>Mon, 20 May 2013 02:40:33 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://chandoo.org/forums/search.php</link>
		</textInput>
		<atom:link href="http://chandoo.org/forums/rss/tags/concatenate" rel="self" type="application/rss+xml" />

		<item>
			<title>chip_excel on "Eliminating Doubles in Cells"</title>
			<link>http://chandoo.org/forums/topic/eliminating-doubles-in-cells#post-102956</link>
			<pubDate>Fri, 17 May 2013 01:21:37 +0000</pubDate>
			<dc:creator>chip_excel</dc:creator>
			<guid isPermaLink="false">102956@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi Hui and SirJB7,&#60;br /&#62;
Worked like a charm! Thank you guys so much.&#60;br /&#62;
Chip
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SirJB7 on "Eliminating Doubles in Cells"</title>
			<link>http://chandoo.org/forums/topic/eliminating-doubles-in-cells#post-102951</link>
			<pubDate>Fri, 17 May 2013 01:06:23 +0000</pubDate>
			<dc:creator>SirJB7</dc:creator>
			<guid isPermaLink="false">102951@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi, chip_excel!&#60;br /&#62;
In that case I agree with Hui's solution of a user defined function.&#60;br /&#62;
Regards!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Hui on "Eliminating Doubles in Cells"</title>
			<link>http://chandoo.org/forums/topic/eliminating-doubles-in-cells#post-102950</link>
			<pubDate>Fri, 17 May 2013 00:57:12 +0000</pubDate>
			<dc:creator>Hui</dc:creator>
			<guid isPermaLink="false">102950@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;If there are more than 1 cell like this as I suspect there is&#60;/p&#62;
&#60;p&#62;A User Defined Function may be better&#60;/p&#62;
&#60;p&#62;Copy the code below into a Code Module in VBA&#60;br /&#62;
Save the file as a Macro Enabled File *.xlsm or *.xlsb file type&#60;/p&#62;
&#60;p&#62;Then in your worksheet simply use&#60;br /&#62;
=RemoveDuplicates(B2)&#60;/p&#62;
&#60;p&#62;The code assume Char(10) is the delimiter&#60;br /&#62;
You can use another character like a , by using&#60;br /&#62;
=RemoveDuplicates(B2,&#34;,&#34;)&#60;/p&#62;
&#60;p&#62;The cell where the formula is must have Word Wrap enabled so it will display as you have shown above&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;Function RemoveDuplicates(sDelimString As String, Optional sDelimiter As String = vbLf, Optional eCompare As VbCompareMethod = vbTextCompare) As String
&#38;#39;
&#38;#39; Code modified from : &#60;a href=&#34;http://www.vbusers.com/code/codeget.asp?ThreadID=591&#38;amp;PostID=1&#34; rel=&#34;nofollow&#34;&#62;http://www.vbusers.com/code/codeget.asp?ThreadID=591&#38;amp;PostID=1&#60;/a&#62;
&#38;#39;
Dim asValues() As String
Dim lThisValue As Long
Dim sExistingValues As String
Dim bEndDelim As Boolean

If Len(sDelimString) Then
  &#38;#39;Check if there is an end delimiter
  bEndDelim = Right$(sDelimString, Len(sDelimiter)) = sDelimiter
  &#38;#39;Split the string into an array
  asValues = Split(sDelimString, sDelimiter)
  &#38;#39;Loop over the items in the string
  For lThisValue = 0 To UBound(asValues)
    &#38;#39;Check if the item is already in the string
    If InStr(1, RemoveDuplicates, asValues(lThisValue) &#38;amp; sDelimiter, eCompare) = 0 Then
      &#38;#39;The value is unique, add it to the results
      RemoveDuplicates = RemoveDuplicates &#38;amp; asValues(lThisValue) &#38;amp; sDelimiter
    End If
  Next
  If bEndDelim = False Then
    &#38;#39;Remove final delimiter
    RemoveDuplicates = Left(RemoveDuplicates, Len(RemoveDuplicates) - Len(sDelimiter))
  End If
End If

End Function&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>chip_excel on "Eliminating Doubles in Cells"</title>
			<link>http://chandoo.org/forums/topic/eliminating-doubles-in-cells#post-102949</link>
			<pubDate>Fri, 17 May 2013 00:51:50 +0000</pubDate>
			<dc:creator>chip_excel</dc:creator>
			<guid isPermaLink="false">102949@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi SirJB7,&#60;br /&#62;
Great solution, but the data will constantly be changing and it would be nice to have a formula to keep the cells dynamically updating. I am also sharing with other who will not have the expertise to walk through the steps above :-/&#60;br /&#62;
Chip
&#60;/p&#62;</description>
		</item>
		<item>
			<title>chip_excel on "Eliminating Doubles in Cells"</title>
			<link>http://chandoo.org/forums/topic/eliminating-doubles-in-cells#post-102948</link>
			<pubDate>Fri, 17 May 2013 00:47:56 +0000</pubDate>
			<dc:creator>chip_excel</dc:creator>
			<guid isPermaLink="false">102948@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi Hui,&#60;br /&#62;
They are always in repeating order.&#60;br /&#62;
Chip
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SirJB7 on "Eliminating Doubles in Cells"</title>
			<link>http://chandoo.org/forums/topic/eliminating-doubles-in-cells#post-102946</link>
			<pubDate>Fri, 17 May 2013 00:38:02 +0000</pubDate>
			<dc:creator>SirJB7</dc:creator>
			<guid isPermaLink="false">102946@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi, chip_excel!&#60;/p&#62;
&#60;p&#62;Try doing this:&#60;br /&#62;
a) Select the cell&#60;br /&#62;
b) Data tab, Data Tools group, Text in Columns icon&#60;br /&#62;
c) Choose Delimited by, Next&#60;br /&#62;
d) Check Other, and enter in the little text box Alt-010 (line feed) or Alt-013 (carriage return), Next, Finish&#60;br /&#62;
e) Select the horizontal range in row 1, Copy&#60;br /&#62;
f) Select cell A2, right button, Paste Special, Transpose&#60;br /&#62;
g) Delete row 1&#60;br /&#62;
h) Select the vertical range in column A&#60;br /&#62;
i) Data tab, Data Tools group, Remove Duplicates icon, Accept&#60;/p&#62;
&#60;p&#62;Not just ten steps, only nine.&#60;/p&#62;
&#60;p&#62;Regards!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Hui on "Eliminating Doubles in Cells"</title>
			<link>http://chandoo.org/forums/topic/eliminating-doubles-in-cells#post-102945</link>
			<pubDate>Fri, 17 May 2013 00:35:28 +0000</pubDate>
			<dc:creator>Hui</dc:creator>
			<guid isPermaLink="false">102945@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Are the repetitions allways next to each other ?&#60;/p&#62;
&#60;p&#62;could it be like?&#60;/p&#62;
&#60;p&#62;Type 1&#60;br /&#62;
Type 2&#60;br /&#62;
Type 3&#60;br /&#62;
Type 4&#60;br /&#62;
Type 3&#60;br /&#62;
Type 2&#60;br /&#62;
Type 5
&#60;/p&#62;</description>
		</item>
		<item>
			<title>chip_excel on "Eliminating Doubles in Cells"</title>
			<link>http://chandoo.org/forums/topic/eliminating-doubles-in-cells#post-102944</link>
			<pubDate>Fri, 17 May 2013 00:25:38 +0000</pubDate>
			<dc:creator>chip_excel</dc:creator>
			<guid isPermaLink="false">102944@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi Hui,&#60;br /&#62;
It is in one cell.&#60;br /&#62;
Chip
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Hui on "Eliminating Doubles in Cells"</title>
			<link>http://chandoo.org/forums/topic/eliminating-doubles-in-cells#post-102943</link>
			<pubDate>Fri, 17 May 2013 00:23:54 +0000</pubDate>
			<dc:creator>Hui</dc:creator>
			<guid isPermaLink="false">102943@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Chip&#60;/p&#62;
&#60;p&#62;Is all the above data in 1 cell or in Multiple cells?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>chip_excel on "Eliminating Doubles in Cells"</title>
			<link>http://chandoo.org/forums/topic/eliminating-doubles-in-cells#post-102941</link>
			<pubDate>Fri, 17 May 2013 00:00:26 +0000</pubDate>
			<dc:creator>chip_excel</dc:creator>
			<guid isPermaLink="false">102941@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi Everyone,&#60;br /&#62;
I have a list of hard key, carriage spaced data in a cell that contains repeated lines of information.&#60;br /&#62;
The data in the cell looks like this:&#60;/p&#62;
&#60;p&#62;Type 1&#60;br /&#62;
Type 2&#60;br /&#62;
Type 3&#60;br /&#62;
Type 3&#60;br /&#62;
Type 4&#60;br /&#62;
Type 5&#60;br /&#62;
Type 5&#60;/p&#62;
&#60;p&#62;Any tips on a formula I can use in an adjacent cell to eliminate the doubles?&#60;br /&#62;
Best,&#60;br /&#62;
Chip
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SirJB7 on "Change text colour when using concatenate and TEXT function"</title>
			<link>http://chandoo.org/forums/topic/change-text-colour-when-using-concatenate-and-text-function#post-101568</link>
			<pubDate>Thu, 09 May 2013 22:37:35 +0000</pubDate>
			<dc:creator>SirJB7</dc:creator>
			<guid isPermaLink="false">101568@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi, mr_hiboy!&#60;/p&#62;
&#60;p&#62;Following oldchippy's idea you could try this:&#60;br /&#62;
- cell is green by default&#60;br /&#62;
- CF1: =SIGN(IFERROR(FIND(&#34;-&#34;,A1),0))+SIGN(IFERROR(FIND(&#34;+&#34;,A1),0))=2 and format for yellow&#60;br /&#62;
- CF2: =SIGN(IFERROR(FIND(&#34;-&#34;,A1),0))=1 and format for red&#60;/p&#62;
&#60;p&#62;And you don't have to split the cells.&#60;/p&#62;
&#60;p&#62;Regards!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mr_hiboy on "Change text colour when using concatenate and TEXT function"</title>
			<link>http://chandoo.org/forums/topic/change-text-colour-when-using-concatenate-and-text-function#post-101557</link>
			<pubDate>Thu, 09 May 2013 21:20:54 +0000</pubDate>
			<dc:creator>mr_hiboy</dc:creator>
			<guid isPermaLink="false">101557@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;How do, actually that would cover a few of the cells, I have one that can have be +/-, so I've split the cells!&#60;/p&#62;
&#60;p&#62;Cheers&#60;br /&#62;
Paul
&#60;/p&#62;</description>
		</item>
		<item>
			<title>oldchippy on "Change text colour when using concatenate and TEXT function"</title>
			<link>http://chandoo.org/forums/topic/change-text-colour-when-using-concatenate-and-text-function#post-101551</link>
			<pubDate>Thu, 09 May 2013 20:42:53 +0000</pubDate>
			<dc:creator>oldchippy</dc:creator>
			<guid isPermaLink="false">101551@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;If you are saying something like this 10% / -2%, then I don't think that possible, BUT maybe if you just coloured the cells green by default to assume all the figure are positive, then if there is a negative % then use CF with this&#60;/p&#62;
&#60;p&#62;=FIND(&#34;-&#34;,A1) then format the fill to RED
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mr_hiboy on "Change text colour when using concatenate and TEXT function"</title>
			<link>http://chandoo.org/forums/topic/change-text-colour-when-using-concatenate-and-text-function#post-101549</link>
			<pubDate>Thu, 09 May 2013 20:11:41 +0000</pubDate>
			<dc:creator>mr_hiboy</dc:creator>
			<guid isPermaLink="false">101549@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I've got two values in a cell, one value is a %age of budget the other variance in £s.  I'd like to be able to have green for positive and red for negative, formula is as follow:&#60;/p&#62;
&#60;p&#62;=TEXT(VLOOKUP($B$2,Data!$B$9:$DA$32,2,FALSE),&#34;0%&#34;)&#38;amp;&#34; / &#34;&#38;amp;TEXT(VLOOKUP($B$2,Data!$B$9:$DA$32,19,FALSE),&#34;0%&#34;)&#60;/p&#62;
&#60;p&#62;I know i could split it out into 2 or 3 cells but that would mean a lot of reworking!&#60;/p&#62;
&#60;p&#62;thanks in advance&#60;/p&#62;
&#60;p&#62;Paul
&#60;/p&#62;</description>
		</item>
		<item>
			<title>TJ on "Validate Cell Data That is Populated by Formula"</title>
			<link>http://chandoo.org/forums/topic/validate-cell-data-that-is-populated-by-formula#post-96128</link>
			<pubDate>Sat, 20 Apr 2013 00:12:00 +0000</pubDate>
			<dc:creator>TJ</dc:creator>
			<guid isPermaLink="false">96128@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Thank you - it doesn't look like I'm going to be able to get back to the spreadsheet in question before Monday, so I'll be sure to come back if I have more questions after applying the changes.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SirJB7 on "Validate Cell Data That is Populated by Formula"</title>
			<link>http://chandoo.org/forums/topic/validate-cell-data-that-is-populated-by-formula#post-95549</link>
			<pubDate>Fri, 19 Apr 2013 03:58:13 +0000</pubDate>
			<dc:creator>SirJB7</dc:creator>
			<guid isPermaLink="false">95549@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;HI, TJ!&#60;br /&#62;
Don't be afraid nor shy and ask any doubt, we're all here to learn, remember that.&#60;br /&#62;
You're right, ksRng3 is the reference to your CostCenter range, and if it's in another worksheet you should adjust the code a little. I'm going to modify it on my previous post so copy it again and replace in your workbook. Good luck.&#60;br /&#62;
Regards!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>TJ on "Validate Cell Data That is Populated by Formula"</title>
			<link>http://chandoo.org/forums/topic/validate-cell-data-that-is-populated-by-formula#post-95476</link>
			<pubDate>Thu, 18 Apr 2013 23:10:05 +0000</pubDate>
			<dc:creator>TJ</dc:creator>
			<guid isPermaLink="false">95476@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Thank you so much for your reply and your assistance - I spent all day searching online and here on the forum before posting, so I'm glad to know it's possible.  I'm very much a novice when it comes to VBA, so I hope you don't mind me asking questions as needed.&#60;/p&#62;
&#60;p&#62;The third constant being declared at the beginning of the code - this is my named range of valid cost centers, correct? Can I replace &#34;L10:L14&#34; with the name of the existing range, or does it need to be a sheet/cell reference?  The named range is on a different sheet (in the same workbook) than the sheet we're working with.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SirJB7 on "Validate Cell Data That is Populated by Formula"</title>
			<link>http://chandoo.org/forums/topic/validate-cell-data-that-is-populated-by-formula#post-94891</link>
			<pubDate>Thu, 18 Apr 2013 01:55:35 +0000</pubDate>
			<dc:creator>SirJB7</dc:creator>
			<guid isPermaLink="false">94891@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi, TJ!&#60;/p&#62;
&#60;p&#62;First of all welcome to Chandoo's website Excel forums. Thank you for your joining us and glad to have you here.&#60;/p&#62;
&#60;p&#62;As a starting point I'd recommend you to read the green sticky topics at this forums main page. There you'll find general guidelines about how this site and community operates (introducing yourself, posting files, netiquette rules, and so on).&#60;/p&#62;
&#60;p&#62;Among them you're prompted to perform searches within this site before posting, because maybe your question had been answered yet.&#60;/p&#62;
&#60;p&#62;Feel free to play with different keywords so as to be led thru a wide variety of articles and posts, and if you don't find anything that solves your problem or guides you towards a solution, you'll always be welcome back here. Tell us what you've done, consider uploading a sample file as recommended, and somebody surely will read your post and help you.&#60;/p&#62;
&#60;p&#62;And about your question...&#60;/p&#62;
&#60;p&#62;If you haven't performed yet the search herein, try going to the topmost right zone of this page (Custom Search), type the keywords used in Tags field when creating the topic or other proper words and press Search button. You'd retrieve many links from this website, like the following one(s) -if any posted below-, maybe you find useful information and even the solution. If not please advise so as people who read it could get back to you as soon as possible.&#60;/p&#62;
&#60;p&#62;In this case you should use the worksheet change event of the worksheet, placing this code in the VBA editor:&#60;br /&#62;
-----&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;Option Explicit

Private Sub Worksheet_Change(ByVal Target As Range)
    &#38;#39; constants
    Const ksRng1 = &#38;quot;H12&#38;quot;
    Const ksRng2 = &#38;quot;I9&#38;quot;
    Const ksWS3 = &#38;quot;Sheet with the cost center list&#38;quot;
    Const ksRng3 = &#38;quot;L10:L14, range of the cost center list (just address)&#38;quot;
    &#38;#39; declarations
    Dim rng1 As Range, rng2 As Range, rng3 As Range
    Dim I As Long, A As String, A1 As String, A2 As String, bOk As Boolean
    &#38;#39; start
    &#38;#39;  ranges
    Set rng1 = Range(ksRng1)
    Set rng2 = Range(ksRng2)
    Set rng3 = Worksheets(ksWS3).Range(ksRng3)
    &#38;#39;  input changed
    If Application.Intersect(Target, rng1) Is Nothing And _
       Application.Intersect(Target, rng2) Is Nothing Then Exit Sub
    A1 = Left(rng1.Cells(1, 1).Value, 2)
    A2 = Left(rng2.Cells(1, 1).Value, 2)
    If Len(A1) &#38;lt;&#38;gt; 2 Or Len(A2) &#38;lt;&#38;gt; 2 Then Exit Sub
    If Target.Cells.Count &#38;gt; 1 Then Exit Sub
    &#38;#39; process
    A = A1 &#38;amp; A2
    With rng3
        I = 1
        bOk = False
        Do Until bOk Or .Cells(I, 1) = &#38;quot;&#38;quot;
            If .Cells(I, 1).Value = A Then
                bOk = True
            Else
                I = I + 1
            End If
        Loop
        If Not bOk Then
            MsgBox &#38;quot;Combination selected invalid!&#38;quot;, _
                vbApplicationModal + vbCritical, &#38;quot;Warning&#38;quot;
        End If
    End With
    &#38;#39; end
    Set rng3 = Nothing
    Set rng2 = Nothing
    Set rng1 = Nothing
End Sub&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;-----&#60;/p&#62;
&#60;p&#62;Regards!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>TJ on "Validate Cell Data That is Populated by Formula"</title>
			<link>http://chandoo.org/forums/topic/validate-cell-data-that-is-populated-by-formula#post-94883</link>
			<pubDate>Thu, 18 Apr 2013 01:19:48 +0000</pubDate>
			<dc:creator>TJ</dc:creator>
			<guid isPermaLink="false">94883@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi - I'm not sure if what I'm trying to do is possible, but I'm hoping it is.  I haven't had any luck searching out an answer so far.&#60;/p&#62;
&#60;p&#62;In Brief:&#60;br /&#62;
In Excel 2010 I have a sheet where the user selects values in two different validated lists and the first two characters of each selection are concatenated into a third cell.  I want to validate the result of this third cell and pop up a Stop error if the concatenation creates an invalid entry.&#60;/p&#62;
&#60;p&#62;In Detail:&#60;br /&#62;
I have validated lists of Departments and Regions; when the user makes a selection on both lists, their selections are trimmed and concatenated in a third cell to create a Cost Center.  For example:&#60;/p&#62;
&#60;p&#62;Formula in J12:  =IF(H12=&#34;(SELECT)&#34;,&#34;&#34;,IF(I9=&#34;(SELECT)&#34;,&#34;&#34;,CONCATENATE(LEFT(H12,2),LEFT(I9,2))))&#60;/p&#62;
&#60;p&#62;Dept List (cell H12):  10 Accounting, 20 Sales, 30 HR&#60;br /&#62;
Region List (cell I9):  01 NW, 02 SW, 03 NE, 04 SE&#60;/p&#62;
&#60;p&#62;The user selects from these lists to determine their numerical cost center.  For example, selecting '10 Accounting' and '03 NE' will populate the result '1003' in the target cell (J12).&#60;/p&#62;
&#60;p&#62;However, I need to be able to validate these populated results, because not all combinations are valid.  For example, if a user selected '10 Accounting' and '01 NW' instead of '03 NE' I need a Stop error to occur because there is no Accounting department operating in the NW region so '1001' is not a valid cost center (the user knows this, but selected the wrong region without realizing the mistake).&#60;/p&#62;
&#60;p&#62;Currently J12 contains the formula above and has validation applied pointing to a list of valid cost center combinations (I un-checked 'In-cell dropdown' in the validation window because this cell will be locked and the user should not be able to change or select anything in it).  I was hoping that when the cell result populated based on user selection in its parent cells, the error would pop up if the result did not match an entry on the validation list.  But this is not happening.&#60;/p&#62;
&#60;p&#62;I'm not sure this is possible, but if it is, any help will be greatly appreciated.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Shoebird on "Concatenate to link cells and create a link across workbooks on a network drive"</title>
			<link>http://chandoo.org/forums/topic/concatenate-to-link-cells-and-create-a-link-across-workbooks-on-a-network-drive#post-87993</link>
			<pubDate>Sat, 30 Mar 2013 12:16:24 +0000</pubDate>
			<dc:creator>Shoebird</dc:creator>
			<guid isPermaLink="false">87993@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;I am able to get this string to work on my C:/ but not on the corporate X:/  IT changed some settings but it still seems to be an issue.&#60;/p&#62;
&#60;p&#62;One additional question for you Hui since I have seen your posts all over and you obviously have a lot more exceo experience than myself.  Indirect seems to need to have the workbook open.  Can I use Index instead of Indirect?  And what does the + symbol infront of Index do that is different than without?&#60;/p&#62;
&#60;p&#62;Thanks again!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Shoebird on "Concatenate to link cells and create a link across workbooks on a network drive"</title>
			<link>http://chandoo.org/forums/topic/concatenate-to-link-cells-and-create-a-link-across-workbooks-on-a-network-drive#post-87988</link>
			<pubDate>Sat, 30 Mar 2013 11:53:15 +0000</pubDate>
			<dc:creator>Shoebird</dc:creator>
			<guid isPermaLink="false">87988@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Thank you very much for the invite Hui.&#60;br /&#62;
You are absolutely right.  This was just a mistake made when I was entering it into this forum.  But for some reason, I am still having issues with the formula.  Any other thoughts?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Hui on "Concatenate to link cells and create a link across workbooks on a network drive"</title>
			<link>http://chandoo.org/forums/topic/concatenate-to-link-cells-and-create-a-link-across-workbooks-on-a-network-drive#post-87838</link>
			<pubDate>Sat, 30 Mar 2013 03:03:36 +0000</pubDate>
			<dc:creator>Hui</dc:creator>
			<guid isPermaLink="false">87838@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Shoebird&#60;/p&#62;
&#60;p&#62;Firstly, Welcome to the Chandoo.org forums&#60;/p&#62;
&#60;p&#62;Your formula is missing an &#38;amp; near the end and a ' near the start&#60;br /&#62;
If you change it to&#60;br /&#62;
=INDIRECT(&#34;'&#34;&#38;amp;A3&#38;amp;&#34;PDU Data&#34;&#38;amp;A1&#38;amp;&#34; &#34;&#38;amp;A2&#38;amp;&#34;\[PDU Trend &#34;&#38;amp;A1&#38;amp;&#34; &#34;&#38;amp;A2&#38;amp;&#34;.xls]PDU Trend &#34;&#38;amp;A1&#38;amp;&#34; &#34;&#38;amp;A2&#38;amp;&#34;'!&#34;&#38;amp;&#34;B3&#34;)&#60;/p&#62;
&#60;p&#62;It evaluates to&#60;br /&#62;
=Indirect(&#34;'x:\data\PDU DataFeb 2013\[PDU Trend Feb 2013.xls]PDU Trend Feb 2013'!B3&#34;)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Shoebird on "Concatenate to link cells and create a link across workbooks on a network drive"</title>
			<link>http://chandoo.org/forums/topic/concatenate-to-link-cells-and-create-a-link-across-workbooks-on-a-network-drive#post-87810</link>
			<pubDate>Sat, 30 Mar 2013 01:34:03 +0000</pubDate>
			<dc:creator>Shoebird</dc:creator>
			<guid isPermaLink="false">87810@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Having a bugger of time with this one.&#60;/p&#62;
&#60;p&#62;Creating a short cut for users so all they have to do is enter a date.&#60;br /&#62;
The date is broken down into year and month in seperate cells.&#60;br /&#62;
I am then trying to link cells and text to create a pathway to draw data out of specific workbooks.&#60;/p&#62;
&#60;p&#62;Example.  A1=Feb and A2=2013 and A3=x:\Data File\&#60;br /&#62;
=indirect(A3&#38;amp;&#34;PDU Data&#34;&#38;amp;A1&#38;amp;&#34; &#34;&#38;amp;A2&#38;amp;&#34;\[PDU Trend &#34;&#38;amp;A1&#38;amp;&#34; &#34;&#38;amp;A2&#38;amp;&#34;.xls]PDU Trend &#34;&#38;amp;A1&#38;amp;&#34; &#34;&#38;amp;A2&#38;amp;&#34;'!&#34;B3&#60;/p&#62;
&#60;p&#62;I know it is lengthy but thanks for help in advance.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Hayley on "Concatenate acting funky"</title>
			<link>http://chandoo.org/forums/topic/concatenate-acting-funky#post-81006</link>
			<pubDate>Wed, 27 Feb 2013 18:57:32 +0000</pubDate>
			<dc:creator>Hayley</dc:creator>
			<guid isPermaLink="false">81006@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Oh...that was it...the data was in TEXT format.&#60;/p&#62;
&#60;p&#62;Thank you both for your help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>shrivallabha on "Concatenate acting funky"</title>
			<link>http://chandoo.org/forums/topic/concatenate-acting-funky#post-81003</link>
			<pubDate>Wed, 27 Feb 2013 18:49:17 +0000</pubDate>
			<dc:creator>shrivallabha</dc:creator>
			<guid isPermaLink="false">81003@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi Hayley,&#60;/p&#62;
&#60;p&#62;Try this if Dhamo's suggestion doesn't work out.&#60;/p&#62;
&#60;p&#62;1. See how the cell has been formatted by pressing CTRL + 1&#60;br /&#62;
2. If it is set to 'TEXT' then change it to 'GENERAL'.&#60;br /&#62;
3. Then press F2 followed by ENTER.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dhamo on "Concatenate acting funky"</title>
			<link>http://chandoo.org/forums/topic/concatenate-acting-funky#post-80998</link>
			<pubDate>Wed, 27 Feb 2013 18:41:21 +0000</pubDate>
			<dc:creator>Dhamo</dc:creator>
			<guid isPermaLink="false">80998@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;You mean, C1 is displaying this (=a1&#38;amp;&#34; &#34;&#38;amp;b1) instead of 123 Stone Street Apt. #4.? if yes, please disable viewing the formulas(Excel menu - Formulas - Show formulas).&#60;/p&#62;
&#60;p&#62;If I am wrong, please post a sample file to analysis further.&#60;/p&#62;
&#60;p&#62;=a1&#38;amp;b1 will do the same as what concatenate(A1,B1) will do. &#60;/p&#62;
&#60;p&#62;To add a space between two address I used this (&#38;amp;&#34; &#34;)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Hayley on "Concatenate acting funky"</title>
			<link>http://chandoo.org/forums/topic/concatenate-acting-funky#post-80996</link>
			<pubDate>Wed, 27 Feb 2013 18:34:04 +0000</pubDate>
			<dc:creator>Hayley</dc:creator>
			<guid isPermaLink="false">80996@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Thanks Dhamo. But no, the result was just to show exactly in the cell =a1&#38;amp;&#34; &#34;&#38;amp;b1
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dhamo on "Concatenate acting funky"</title>
			<link>http://chandoo.org/forums/topic/concatenate-acting-funky#post-80995</link>
			<pubDate>Wed, 27 Feb 2013 18:32:09 +0000</pubDate>
			<dc:creator>Dhamo</dc:creator>
			<guid isPermaLink="false">80995@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Assuming your values are at first row. Please change the row number according to your data.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dhamo on "Concatenate acting funky"</title>
			<link>http://chandoo.org/forums/topic/concatenate-acting-funky#post-80994</link>
			<pubDate>Wed, 27 Feb 2013 18:30:30 +0000</pubDate>
			<dc:creator>Dhamo</dc:creator>
			<guid isPermaLink="false">80994@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi Hayley,&#60;/p&#62;
&#60;p&#62;Try this in column c.&#60;/p&#62;
&#60;p&#62;=a1&#38;amp;&#34; &#34;&#38;amp;b1
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Hayley on "Concatenate acting funky"</title>
			<link>http://chandoo.org/forums/topic/concatenate-acting-funky#post-80993</link>
			<pubDate>Wed, 27 Feb 2013 18:22:53 +0000</pubDate>
			<dc:creator>Hayley</dc:creator>
			<guid isPermaLink="false">80993@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;I was recently upgraded to Excel 2010 so maybe that's why I can't figure this out, but I have 2 columns that contain address information. Column A is 123 Stone Street. Column B is Apt. #4. I want Column C to comibine them into one cell: 123 Stone Street Apt. #4.&#60;/p&#62;
&#60;p&#62;I tried =concatenate(A1,B1) and the results literally said: =concatenate(A1,B1)&#60;/p&#62;
&#60;p&#62;Help? How do I get it to actually perform the function?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
