Page 53 of 54 FirstFirst ... 34351525354 LastLast
Results 521 to 530 of 538

Thread: Appendix Thread. App Index Rws() Clms() Majic code line Codings for other Threads, Tables etc) TEST COPY

  1. #521
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,315
    Rep Power
    10
    Here is an alternative single liner ( almost ## ) type solution to the last post. It was much simpler than I expected, and ends up much shorter than these solutions of mine usually do. (## There was a small snag, not solved yet, which means I have to do it in 2 code lines for now. I may take a look at that later here: https://excelfox.com/forum/showthrea...ll=1#post16655 )

    Solution explanation.
    Part 1. Background

    This is all to do with
    _ “my”** ____arrOut()=Index(ArrIn(), Rws(), Clms()) ______ type solutions, ( https://www.excelforum.com/excel-new...ml#post4571172 )
    and also
    _ using the Match in a similar way – ( some time ago I obsessed with trying out Application.Match where the first argument is an array, in a similar way to those of those array arguments Rws() and Clms() in Index. I got so obsessed I littered a sub forum with over long posts until they deleted them all and limited the post size to stop me doing it again. With hindsight, not a bad thing to do, as I could not see the wood for the trees back then. I can now, and its not at all difficult to understand, so I really don’t need all that crap anymore. Let me call that for now “my” **
    ________arrOut() = Match(arrArg1(), arrIn() , 0 )
    ___ type solution.
    ( ** I use the word “my” lightly. – I learnt all this stuff from looking at stuff from Rick Rothstein and snb. ( I am not sure if they “invented it” , or got it from other peoples stuff. if I added anything “new” , it might be some of my detailed explanations, which whilst I don’t know if they are correct, they seem to be a valid theory as they go a long way to explain the results ) )


    Here is a quick demo of how
    _ my ____arrOut()=Match(arrArg1(), arrIn() , 0 )
    ____ works
    Ordinarily, or most usually the first argument is just one thing that you are looking for. As far as I know all documentation tells you that the way Match in Excel works is, ( simplified ) :
    _... you look in the second argument array of things for the thing in the first argument, and , assuming you find it, return the position along where it is, pseudo like
    _____ Match( b , { a, b, c } , 0 ) = 2
    In the practice we sometimes, ( not always ) , find that things in Excel will work with array arguments and return a corresponding array of outputs. So taking that last example, pseudo like
    _____ Match( {b, a} , { a, b, c } , 0 ) = {2, 1}

    So that is a bit of theory out of the way. ( I have done a fuller explanation in a few places of how the Application.Index with Look Up Rows and Columns Arguments as VBA Arrays works in a few places
    https://excelfox.com/forum/showthrea...ll=1#post16455
    https://www.excelforum.com/excel-new...ml#post4571172
    )




    Part 2. Here is my solution examples
    Refering to the first long macro below:

    Rem1 is just making some stuff I need for the demo. I use the string example of “ZAC” as per the original OP example http://www.eileenslounge.com/viewtopic.php?f=30&t=38460 . For reasons given in the next bit, I make an array of the 26 Ascii Code numbers for the capital alphabet characters, A, B. C ….Z , Asskeys() = { 65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81 ,82,83,84,85,86,87,88,89,90 }
    My array of the weights values, Weights(), for the characters will be the same size as Asskeys() and will have the corresponding weight value for each of the 26 characters in the same order.
    Once again it will be clear why later. For now, the point is to have arrays of the same size with related things in the same order
    Code:
     ' '   Ascii Code       65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90
    ' '                     A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z
    ' Let Weights() = Array(1, 5, 3, 1, 4, 3, 2, 1, 6, 4, 5, 3, 2, 1, 2, 3, 4, 5, 6, 7, 6, 5, 4, 3, 2, 2)  
    Rem 2
    I found a way on the internet to turn my string example into an array of single characters, which is what I will be feeding into my Match as first argument. ( Unfortunately it does not return in each element the character, but rather its Ascii Code. But for my purposes that’s just as good.

    Rem 3 Match
    This is the Match bit, and it tells me the position along where I find the three Ascii Code numbers of “ZAC” in the Ascii Code array, Asskeys()
    We get from match here, a 3 element array, MtchRes(), of the position along, of the characters in “ZAC” in the array Asskeys(). We have organised that the array of weights is organised in the same order, so this will also be the position along of the corresponding weight number in the array of weights, Weights().
    In the example we should have then an array like {26, 1, 3} _ ( if you have followed the logic so far, you can see this is like a pseudo Alphabet position of the characters, Z , A , and C __ (But don’t get confused with Ascii codes, which is pseudo like the official position of characters, and defined by some world standard, that Excel knows about. As example, capital A is listed as Ascii code 65, lowercase a is listed as 97 )

    Rem 4 Index
    The 3 element array of the position along, of the characters in “ZAC” in the array Asskeys(), is effectively the Clms() array we need for a __arrOut()=Index(ArrIn(), Rws(), Clms())__type solution, where the look up array, arrIn() , will be the weights array, Weights()
    The returned array from Index , arrOut(), will be an array, of 3 numbers, which are the weight numbers for the example string “ZAC”.

    Rem 5
    Finally we simply sum the elements of the found weight values, as per the original OP request.
    Code:
    Sub AssKeys()
    Rem 1 Make the arrays and other hard coded things for the demo
    Dim AssKeys(1 To 26) As Long
    Dim Eye As Long
        For Eye = 65 To 90 Step 1
         Let AssKeys(Eye - 64) = Eye
        Next Eye
    ' OR
    '  Dim AssKeys() As Variant: Let AssKey() = Array(65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90)
    Dim Weights() As Variant:
     '   Ascii Code       65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90
     '                     A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z
     Let Weights() = Array(1, 5, 3, 1, 4, 3, 2, 1, 6, 4, 5, 3, 2, 1, 2, 3, 4, 5, 6, 7, 6, 5, 4, 3, 2, 2)
    Dim ZAC As String
     Let ZAC = "ZAC" ' This is a demo example text string
    Rem 2 String to array
    Dim arrZAC() As Byte: Let arrZAC() = StrConv(ZAC, vbFromUnicode) ' https://stackoverflow.com/questions/13195583/split-string-into-array-of-characters
    Rem 3 Match
    Dim MtchRes() As Variant
     Let MtchRes() = Application.Match(arrZAC(), AssKeys(), 0)
    Rem 4 Index
    Dim arrOut() As Variant
     Let arrOut() = Application.Index(Weights(), 1, MtchRes())
    Rem 5
    Dim Some As Long: Let Some = Application.Sum(arrOut())
    End Sub
    Here the shortening possibilities

    Code:
    Sub BeautifulAsskeys()
    Rem 1 Make the arrays and other hard coded things for the demo
    'Dim Asskeys(1 To 26) As Long
    'Dim Eye As Long
    '    For Eye = 65 To 90 Step 1
    '     Let Asskeys(Eye - 64) = Eye
    '    Next Eye
    ' OR
    '  Dim AssKeys() As Variant: Let AssKey() = Array(65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90)
    'Dim Weights() As Variant:
    ' '   Ascii Code       65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90
    ' '                     A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z
    ' Let Weights() = Array(1, 5, 3, 1, 4, 3, 2, 1, 6, 4, 5, 3, 2, 1, 2, 3, 4, 5, 6, 7, 6, 5, 4, 3, 2, 2)
    'Dim ZAC As String
    ' Let ZAC = "ZAC" ' This is a demo example text string
    Rem 2 String to array
    Dim arrZAC() As Byte: Let arrZAC() = StrConv("ZAC", vbFromUnicode) ' https://stackoverflow.com/questions/13195583/split-string-into-array-of-characters
    Rem 3 Match
    'Dim MtchRes() As Variant
    ' Let MtchRes() = Application.Match(arrZAC(), Asskeys(), 0)
    ' Let MtchRes() = Application.Match(StrConv(ZAC, vbFromUnicode), Asskeys(), 0)' this does not work
    Rem 4 Index
    'Dim arrOut() As Variant
    ' Let arrOut() = Application.Index(Weights(), 1, MtchRes())
    Rem 5
    Dim Some As Long: Let Some = Application.Sum(Application.Index(Array(1, 5, 3, 1, 4, 3, 2, 1, 6, 4, 5, 3, 2, 1, 2, 3, 4, 5, 6, 7, 6, 5, 4, 3, 2, 2), 1, Application.Match(arrZAC(), Array(65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90), 0)))
    End Sub
    '
    Sub AsKeys()                                                       '  http://www.eileenslounge.com/viewtopic.php?p=297288#p297288
    Dim arrZAC() As Byte: Let arrZAC() = StrConv("ZAC", vbFromUnicode) ' https://stackoverflow.com/questions/13195583/split-string-into-array-of-characters
    Dim Some As Long: Let Some = Application.Sum(Application.Index(Array(1, 5, 3, 1, 4, 3, 2, 1, 6, 4, 5, 3, 2, 1, 2, 3, 4, 5, 6, 7, 6, 5, 4, 3, 2, 2), 1, Application.Match(arrZAC(), Array(65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90), 0)))
    End Sub
    







    ** I use the word “my” lightly. – I learnt all this stuff from looking at stuff from Rick Rothstein and snb. ( I am not sure if they “invented it” , or got it from other peoples stuff. if I added anything “new” , it might be some of my detailed explanations, which whilst I don’t know if they are correct, they seem to be a valid theory as they go a long way to explain the results

  2. #522
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,315
    Rep Power
    10
    Spare post for sharing some documents
    Ersatzpost für die gemeinsame Nutzung einiger Dokumente


    Attachment 3932


    Attachment 3933


    Attachment 3934








    AlanSdattHof15Aug2022.docx
    https://app.box.com/s/xxntrig04ppe7hdd68se882rm3fv2ysw https://bit.ly/3QXSEv0

    AlanSdattHof15Aug2022.doc
    https://app.box.com/s/pt4v46nl28qya2bfycgq2rdfz3a35fq8 https://bit.ly/3STVvqm





    This post links
    AlanSdattHof15Aug2022.docx
    AlanSdattHof15Aug2022.doc
    https://excelfox.com/forum/showthrea...ll=1#post16655
    https://excelfox.com/forum/showthrea...ge55#post16655
    https://excelfox.com/forum/showthread.php/2345-Appendix-Thread-(-Codes-for-other-Threads-HTML-Tables-etc-)?p=16655&viewfull=1#post16655
    https://excelfox.com/forum/showthread.php/2345-Appendix-Thread-(-Codes-for-other-Threads-HTML-Tables-etc-)/page55#post16655
    https://bit.ly/3AEPlmM https://bit.ly/3wmjQvh
    Attached Images Attached Images
    Attached Files Attached Files
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

  3. #523
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,315
    Rep Power
    10
    In support of this main forum post
    https://excelfox.com/forum/showthrea...-Excel-Formula

    Assuming this is data and wanted results from column D

    _____ Workbook: DogsNutsFormulas.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    A
    B
    C
    D
    E
    F
    G
    H
    I
    1
    Code Values Code Value1 Value2 Value3 Value4
    2
    1001
    2101
    1001
    2101
    5205
    2605
    9285
    3
    1001
    5205
    2604
    4256
    7458
    3555
    4
    1001
    2605
    5
    1001
    9285
    6
    2604
    4256
    7
    2604
    7458
    8
    2604
    3555
    9
    Worksheet: SimpleUniqueVLookUp



    Enter this In D2 via CSE, then drag it down:
    =IFERROR(INDEX($A$2:$A$8,MATCH(0,COUNTIF($D$1:D1,$A$2:$A$8),0)),"")
    Row\Col
    D
    2
    =IFERROR(INDEX($A$2:$A$8,MATCH(0,COUNTIF($D$1:D1,$A$2:$A$8),0)),"")
    3
    =IFERROR(INDEX($A$2:$A$8,MATCH(0,COUNTIF($D$1:D2,$A$2:$A$8),0)),"")


    Alternative formula for earlier versions of Excel:
    =IF(ISERROR(INDEX($A$2:$A$8,MATCH(0,COUNTIF($D$1:D1,$A$2:$A$8),0))),"",INDEX($A$2:$A$8,MATCH(0,COUNTIF($D$1:D1,$A$2:$A$8),0)))
    Row\Col
    D
    2
    =IF(ISERROR(INDEX($A$2:$A$8,MATCH(0,COUNTIF($D$1:D1,$A$2:$A$8),0))),"",INDEX($A$2:$A$8,MATCH(0,COUNTIF($D$1:D1,$A$2:$A$8),0)))
    3
    =IF(ISERROR(INDEX($A$2:$A$8,MATCH(0,COUNTIF($D$1:D2,$A$2:$A$8),0))),"",INDEX($A$2:$A$8,MATCH(0,COUNTIF($D$1:D2,$A$2:$A$8),0)))



    Hi Amelynn
    Quote Originally Posted by Amelynn View Post
    …..
    • If after TextBox(n) it is necessary to put the .text or .value
    • If not putting anything is wrong (although it works)
    • What is the difference between the three things……
    I can’t answer most of your question here, unfortunately, because
    _ I have no experience with Textboxes
    _ I am not too familiar with the .Text property.

    I can only tell you the small part that I know about: - what I know about is
    Range__
    Range__.Value
    Range__.Value2


    Range__ object
    Range__ is an object with an extremely large number of properties, methods and various things.
    Range__ is all to do with how Excel organises and uses cells. Understanding the Range__ object is probably one of the most important things to know about in Excel and VBA, especially if you are interested in spreadsheet things.
    But many times, we are only interested in the value that is in a cell. Because most people are often only interested in the value in a cell, Microsoft have made .Value the default of what you get if you just use Range__. So most of the time if you choose to write just Range__ , then in fact , Excel will not see that, instead it will see and use Range__.Value
    It is just personal choice if you choose to use Range__.Value or Range__. Usually there are no problems if you just use Range__ , but I have seen occasions when this caused problems as there may be occasions when Excel tries to refer to the Range__ object instead of the value.
    So personally I prefer to always include the .Value if I am interested in a value. I will only leave out the .Value if I am doing something that wants me to reference the Range__ object. Just personal choice.

    So, in your example, when you used Worksheets("Sheet1").Range("B10") , Excel did not see and use that.
    Instead, Excel saw and used this: Worksheets("Sheet1").Range("B10").Value


    Quote Originally Posted by Amelynn View Post
    ....After the range, should I put .text, .value or just nothing? ...
    So in your examples you could probably just use nothing , but I personally would recommend that you include .Value ( or .Value2 )
    But that is just my personally recommendation

    .Value or .Value2
    .Value is almost the simplest cell value. But not quite. If you are interested in dates or currency, then .Value will show you the date or currency in a date or currency format.
    .Value2 is the most simplest cell value as Excel has it held before any formatting is done.

    Personally I will use .Value2 most of the time, because it may work a little faster or may be less likely to problems caused by awkward cell formatting issues. I think theoretically it is also a bit more efficient to use .Value2

    So….
    Quote Originally Posted by Amelynn View Post
    .....If not putting anything is wrong (although it works).....
    It is not wrong to put nothing. But it is bad practice, as it may cause problems in other situations in Excel VBA
    (More than half of people put nothing, and they will often get a problem later that they don’t understand )



    Quote Originally Posted by Amelynn View Post
    ....Should I necessarily declare that, for example, "Niebla" is a variable of type Str?
    The way that you are using "Niebla" in VBA coding is perfectly alright, because: Most of the time in VBA coding, if VBA sees something enclosed in quotes, _ "__" _ , like
    "xyz"
    , then VBA will take the value of _ xyz _ to be a string.
    Even if , in your coding, you did this
    "3"
    , the VBA would not take the FONT=Courier New]"3"[/FONT] as a number. It would see it as a string, just as it would see this as a string
    "I have 3 Apples"


    Note that VBA is very user friendly with numbers and strings. For example if you pass it a string like "3" in a function wanting a number, the VBA will not error, but instead it will take a number 3 instead.

    In many other computer languages you must be much more careful in defining precisely variable types.




    That is as close as I can come to answering your question.
    But I do know about Range__ , Range__.Value , Range__.Value2 quite well.
    So I am happy to give you any further clarity on those things. Those things are all to do with range referencing in Excel and VBA, which is a very important thing to know about.


    Alan







    Ref
    https://fastexcel.wordpress.com/2011...w-to-avoid-it/
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

  4. #524
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,315
    Rep Power
    10
    Some notes in support of this forum main post
    https://excelfox.com/forum/showthrea...ll=1#post16712


    An erroring formula: https://i.postimg.cc/nzbWtGTQ/An-erroring-formula.jpg


    Highlight a section, such as the Match section https://i.postimg.cc/5NxZ0pJB/Highlight-match.jpg


    Hit key F9 https://i.postimg.cc/7P1FwdFP/Hit-ke...esult-is-5.jpg


    This reveals that we have 5 , or in total , 5 + 1 = 6


    So in the VLookUp we are looking at column 6 in the range given by bk
    The names manager tells us which range we want:
    Second formula section is the range bk https://i.postimg.cc/JhBFg23L/range-bk.jpg




    Similarly we can investigate the first section in the erroring formula
    Highlight first formula section https://i.postimg.cc/902syY7j/Highli...la-section.jpg

    Hit key F9 https://i.postimg.cc/wvLStG3V/Hiut-F...st-section.jpg

    This reveals that the Look up value, the value that you are looking for is "DMG1"


    Further investigations by trial and error , reveals that some character combinations in cell A2 cause the error. But I do not know why yet ?

    Examples:
    Not work:
    https://i.postimg.cc/YqbTmg2J/d-not-work.jpg
    https://i.postimg.cc/d0zbVYQ3/d-MG1-not-work.jpg

    Works

    https://i.postimg.cc/3xq6tTv1/MG1-works.jpg

    In fact, it seems that some character combinations are not allowed as the Look Up value generally , for example try another cell, and I can find a character combination that does not work
    https://i.postimg.cc/SK204shH/Not-wo...ters-in-A6.jpg


    I am puzzled.

    In fact if you look in detail at the results you are getting when it does appear to work, then they are not alwaysthe correct values.
    https://postimg.cc/kBnt3Zzg


    Very strange. I am even more puzzled
    ?????






    Update Answer from Sandy https://excelfox.com/forum/showthrea...ll=1#post16717
    Quote Originally Posted by sandy666 View Post
    with formula =VLOOKUP(F$26,bk,MATCH($B$24,bkt,1)+1,0) value $1.55 is returned and so on
    ..just forgot comma on the end or define last argument 0, VLOOKUP(F$26,bk,MATCH($B$24,bkt,1)+1,) so he need to learn how to use VLOOKUP function
    VLOOKUP require all arguments, even if last argument is omitted there should be defined place for it after last comma

    https://i.postimg.cc/15VpN7Hj/ThatsIt.jpg
    ( I thought I had checked that, but missed something somewhere, I don’t know why I missed that, maybe I think also I need to learn how to use VLoopUp properly! )


    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

  5. #525
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,315
    Rep Power
    10
    Test

    I see what you are saying its like “the 14th thing along” , like in if it was in a 1 dimensional or 1 “row” array,
    This sort of thing
    _number along{1 _ , 2 , 3 , 4 , 5 , 6 , 7 , 8 _ , 9 _ , 10_, 11_, 12_,13 , 14 __ , 15 , _16}
    ____INDEX({"Part",13,25,37,48,73,101,145,201,289,600,750,1009, "DMG1",4.1,2.85},1,14) = "DMG1"
    Or similarly
    __number along_____{1 _ , 2 , 3 , 4 , 5 , 6 , 7 , 8 _ , 9 _ , 10_, 11_, 12_,13 , 14 __ , 15 , _16}
    __=MATCH("DMG1",{"Part",13,25,37,48,73,101,145,201,289,600,750,1009, "DMG1",4.1,2.85},0) = 14
    (Note I must change the row separating ; before the to a column separating , **

    I also get indexes mixed up and also I mix up item numbers and indexes. Sometimes they are the same, sometimes they have a similar meaning



    ( ** just passing interest, if in a range we talk about the “number along” on any range, then we are talking about the range item number, and this “number along” goes like all columns in a row, then next row and so on.
    So example in both these ranges, the range item number is 14
    Row\Col A B C D E F G H I J K L M N
    1 Part 13 25 37 48 73 101 145 201 289 600 750 1009 DMG1

    Range("A1:N1").Item(14) = "DMG1"



    Row\Col A B C D E F G H I J K L M
    1 Part 13 25 37 48 73 101 145 201 289 600 750 1009
    2 DMG1 $ 4.10 $ 2.85 $ 2.85 $ 1.90 $ 1.55 $ 1.35 $ 1.25 $ 0.95 $ 0.85 $ 0.75 $ 0.75 $ 0.65

    Range("A1:M2").Item(14) = "DMG1"



    Row\Col O P Q R S T U V W
    4 Part 13 25 37 48 73 101 145 201
    5 289 600 750 1009 DMG1 $ 4.10 $ 2.85 $ 2.85 $ 1.90

    Range("O4:W5").Item(14) = "DMG1"

    Here is a very interesting article by a very clever person on all that https://excelfox.com/forum/showthrea...column-looping
    )
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

  6. #526
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,315
    Rep Power
    10

    in VBA if the given string is found then delete everything between two newlines where the string appears.

    In support of this forum thread
    https://excelfox.com/forum/showthrea...ll=1#post16718

    In worksheet String to search is the following:

    _____ Workbook: VBA delete everything between two newlines where the string appears.xlsx ( Using Excel 2007 32 bit )
    Row\Col A
    1
    2 paragraph/line
    3
    4 searched string
    5 #VBA
    Worksheet: String to search

    Here is the given input examples ( The OP gave 4 cells , but for demo here I will put them all in the same code box and separate the 4 examples with a line. Black is the before/input , and Blue the after/ wanted output
    Code:
     in VBA if the given string is found then delete everything between two newlines where the string appears.
    "Looking for help in VBA"
    
    if the given string is found in any paragraph/line excel cell then delete everything between two newlines where the string appears. in VBA if the given string is found then delete everything between two newlines where the string appears.
    "Looking for help in VBA"searched*string
    
    if the given string is found in any excel cell then delete everything between two newlines where the string appears.
     in VBA if the given string is found then delete everything between two newlines where the string appears.
    "Looking for help in VBA"
    
    
    
    
    if the given string is found in any excel cell then delete everything between two newlines where the string appears.
    
    
    
    
    in VBA if the given string is found then delete everything between two newlines where the string appears. "Looking for help in #VBA" if the given string is found in any excel cell then delete paragraph/line everything between two newlines where the string appears. in VBA if the given string is found then delete paragraph/line everything between two newlines where the string appears. "Looking for help in VBA" if the given string is found in any excel cell then delete everything between two newlines where the string appears. searched*string in VBA if the given string is found then delete everything between two newlines where the string appears. "Looking for help in VBA" if the given string is found in any excel cell then delete everything between two newlines where the string appears.
    in VBA if the given string is found then delete everything between two newlines where the string appears. "Looking for help in VBA" if the given string is found in any paragraph/line excel cell then delete everything between two newlines where the string appears. in VBA if the given string is found then delete everything between two newlines where the string appears. "Looking for help in VBA"searched*string if the given string is found in any excel cell then delete everything between two newlines where the string appears. in VBA if the given string is found then delete everything between two newlines where the string appears. "Looking for help in VBA" if the given string is found in any excel cell then delete everything between two newlines where the string appears.
    in VBA if the given string is found then delete everything between two newlines where the string appears. "Looking for help in #VBA" if the given string is found in any excel cell then delete paragraph/line everything between two newlines where the string appears. in VBA if the given string is found then delete paragraph/line everything between two newlines where the string appears. "Looking for help in VBA" if the given string is found in any excel cell then delete everything between two newlines where the string appears. searched*string in VBA if the given string is found then delete everything between two newlines where the string appears. "Looking for help in VBA" if the given string is found in any excel cell then delete everything between two newlines where the string appears.
    OK so it looks quite clear what is needed. The OPs explanation does confirm to this, …. if the given string is found in any excel cell then delete everything between two newlines where the string appears.
    … How can I delete sentences with a specific keyword in excel cells in all sheets?
    …..but without the example it was much more difficult to understand and may have been interpreted to mean something else..




    Putting the explanation of what is wanted a bit clearer,
    There is text in some cells. The text is split into paragraphs or lines, that is to say we see multi-line text, something like
    Code:
    How are you?
    
    Well I am OK Bro today
    Enjoying a wank just now.
    What we want to do is: Modify the text in cells in this way: If certain words are found in a paragraph or line, then all the text in that line needs to be deleted. Lets say in that example, Bro was one of the words to search for. In that case, the text should be modified so as to look like this
    Code:
    How are you?
    
    
    Enjoying a wank just now.
    We remove all the text, Well I am OK Bro today, but it looks like the lines stay there.


    We are manipulating text and some form of line separation is involved, so its usually a good idea to look carefully at the actual characters: Almost immediately I think of Splitting and Joining text where the thing to split by or use to join together will be a text line separator, which can vary. Hence important to take a look, so I will, here, later
    https://excelfox.com/forum/showthrea...ll=1#post16727
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

  7. #527
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,315
    Rep Power
    10
    In support of this main Forum Thread
    https://excelfox.com/forum/showthrea...earched-string

    Input
    Code:
    					
    "#VBA: keep only one searched string searched string searched string searched string.
    #VBA: keep only searched string one searched string.
    The list of search stings searchedCSV string searched string is given in sheet 2.
    In sheet1, with #VBA check if a given string is CSV searched string found more than once in a paragraph/line. If found more than once then keep only one.
    I want to do this both in an excel sheet with CSV searched string multiple column data in multiple rows as well as in a CSV or text file."				
    				
    "searched string searched string #VBA: keep only one searched string.
    #VBA: keep only one searched string.
    searched string searched string searched stringThe list of search stings is given in sheet 2.
    In sheet1, with #VBA check if a given string is found more than once #VBA #VBA #VBA #VBA #VBA #VBA #VBA #VBA #VBA #VBA #VBA #VBA in a paragraph/line. If found more than once then keep only one. #VBA #VBA #VBA #VBA 
    I want to do this both in an excel sheet with multiple column data in multiple rows as well as in a CSV or text file."				
    				
    "#VBA: keep only one searched string.
    #VBA: keep only one searched string.
    The list of search stings is given in sheet 2.
    In sheet1, with #VBA check if a given string is found more than once in a paragraph/line. If found more than once then keep only one.
    I want to do this both in an excel sheet with multiple column data in multiple rows as well as in a CSV or text file. #VBA: keep only one searched string.
    #VBA: keep only one searched string. searched string searched string searched string searched string
    The list of search stings is given in sheet 2. searched string searched string searched string searched string
    In sheet1, with #VBA check if a given string is found more than once in a paragraph/line. If found more than once then keep only one.
    I want to do this both in an excel sheet with multiple column data in multiple rows as well as in a CSV or text file."				
    				
    				
    				
    				
    	"#VBA: #VBA  keep only one searched string.
    #VBA: #VBA #VBAkeep only one searched string.
                  searched string searched string  searched string  searched string  searched string
    In sheet1, with #VBA check if a given string is found more than #VBA once in a paragraph/line. If found more than #VBA once then keep only one.
    
    #VBA: keep only one searched string.
    The list of search stings is given in sheet 2.
    In sheet1, with #VBA check if a given string is found more than #VBA once in a paragraph/line. If found more than #VBA once then keep only one.
    I want to do this both in an excel sheet with multiple column data in multiple rows as well as in a CSV or text file."			
    				
    				
    				"#VBA: keep only one searched string.
    
    
    In sheet1, with #VBA check if a given string is found more than once in a paragraph/line. If found more than once then keep only one.
    I want to do this both in an excel sheet with multiple column data in multiple rows as well as in a CSV or text file. #VBA: keep only one searched string.
    
    
    In sheet1, with #VBA check if a  paragraph/line given string is found more than once in a paragraph/line paragraph/line. If found more than once then keep only one.
    I want to do this both in an excel sheet with multiple column data in multiple rows as well as in a CSV or text file."
    Output
    Code:
    				
    "#VBA: keep only one searched string .
    #VBA: keep only searched string one .
    The list of search stings searchedCSV string searched string is given in sheet 2.
    In sheet1, with #VBA check if a given string is CSV searched string found more than once in a paragraph/line. If found more than once then keep only one.
    I want to do this both in an excel sheet with CSV searched string multiple column data in multiple rows as well as in a CSV or text file."				
    				
    "searched string  #VBA: keep only one searched string.
    #VBA: keep only one searched string.
    searched string searched stringThe list of search stings is given in sheet 2.
    In sheet1, with #VBA check if a given string is found more than once in a paragraph/line. If found more than once then keep only one. 
    I want to do this both in an excel sheet with multiple column data in multiple rows as well as in a CSV or text file."				
    				
    "#VBA: keep only one searched string.
    #VBA: keep only one searched string.
    The list of search stings is given in sheet 2.
    In sheet1, with #VBA check if a given string is found more than once in a paragraph/line. If found more than once then keep only one.
    I want to do this both in an excel sheet with multiple column data in multiple rows as well as in a CSV or text file. #VBA: keep only one searched string.
    #VBA: keep only one searched string.  
    The list of search stings is given in sheet 2. searched string
    In sheet1, with #VBA check if a given string is found more than once in a paragraph/line. If found more than once then keep only one.
    I want to do this both in an excel sheet with multiple column data in multiple rows as well as in a CSV or text file."				
    				
    				
    				
    				
    	"#VBA:   keep only one searched string.
    #VBA: keep only one searched string.
                  searched string
    In sheet1, with #VBA check if a given string is found more than once in a paragraph/line. If found more than once then keep only one.
    
    #VBA: keep only one searched string.
    The list of search stings is given in sheet 2.
    In sheet1, with #VBA check if a given string is found more than once in a paragraph/line. If found more than once then keep only one.
    I want to do this both in an excel sheet with multiple column data in multiple rows as well as in a CSV or text file."			
    				
    				
    				"#VBA: keep only one searched string.
    
    
    In sheet1, with #VBA check if a given string is found more than once in a paragraph/line. If found more than once then keep only one.
    I want to do this both in an excel sheet with multiple column data in multiple rows as well as in a CSV or text file. #VBA: keep only one searched string.
    
    
    In sheet1, with #VBA check if a  paragraph/line given string is found more than once in a paragraph/line paragraph/line. If found more than once then keep only one.
    I want to do this both in an excel sheet with multiple column data in multiple rows as well as in a CSV or text file."
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

  8. #528
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,315
    Rep Power
    10
    In support of this thread
    https://excelfox.com/forum/showthrea...ll=1#post16710

    Sheet1 Input in column A
    _____ Workbook: VBA row to cell1.xlsx ( Using Excel 2007 32 bit )
    Row\Col A
    2 234. digital marketing information: 2021-2022***….Keywrod1:
    2021-2022***
    3
    4 Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    5 Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    6
    7
    8 Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    9
    10 Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    11
    12 Keywrod1:
    13 Keyword2: 30000000 *&^%$QWERTY QWERTY
    14
    15
    16 2344. digital marketing information: 2020-2021***….Keywrod1: *** 2020-2021
    digital marketing information
    digital marketing information
    17
    18 Digital marketing: =
    also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    19 Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    20
    21 Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    22 Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    23
    24 Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    25 Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    26 Keywrod1: *** 2020-2021
    27 Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    28 Keyword2
    29
    30 1. digital marketing information: 2021-2022***….Keywrod1:
    2021-2022***
    31
    32 Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    33
    34
    35 QWERTY Keyword2: 30000000 *&^%$QWERTY QWERTY
    Worksheet: InputSheet1

    Code:
    "234. digital marketing information: 2021-2022***….Keywrod1: 
    2021-2022***"
    
    "Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel."
    "Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    "
    
    
    "Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel."
    
    "Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel."
    
    Keywrod1: 
    Keyword2: 30000000 *&^%$QWERTY QWERTY
    
    
    "2344. digital marketing information: 2020-2021***….Keywrod1: *** 2020-2021
    digital marketing information
    digital marketing information"
    
    "Digital marketing: =
    also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel."
    "Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    "
    
    "Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    "
    "Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel."
    
    "Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    "
    "Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel."
    Keywrod1: *** 2020-2021
    "Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel."
    Keyword2
    
    "1. digital marketing information: 2021-2022***….Keywrod1: 
    2021-2022***"
    
    "Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel."
    
    
    QWERTY Keyword2: 30000000 *&^%$QWERTY QWERTY
    Sheet2 Wanted output, next post
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

  9. #529
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,315
    Rep Power
    10
    Output required ( https://excelfox.com/forum/showthrea...ll=1#post16685 )

    _____ Workbook: VBA row to cell1.xlsx ( Using Excel 2007 32 bit )
    Row\Col
    A
    2
    234. digital marketing information: 2021-2022***….Keywrod1:
    2021-2022***

    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.


    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.

    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.

    Keywrod1:
    Keyword2: 30000000 *&^%$QWERTY QWERTY
    3
    2344. digital marketing information: 2020-2021***….Keywrod1: *** 2020-2021
    digital marketing information
    digital marketing information

    Digital marketing: =
    also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel."
    "Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.


    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.

    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel."

    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.

    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel."
    Keywrod1: *** 2020-2021
    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    Keyword2
    4
    1. digital marketing information: 2021-2022***….Keywrod1:
    2021-2022***

    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.


    QWERTY Keyword2: 30000000 *&^%$QWERTY QWERTY
    Worksheet: OutputSheet2

    Code:
    "234. digital marketing information: 2021-2022***….Keywrod1: 
    2021-2022***
    
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    
    
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    
    Keywrod1: 
    Keyword2: 30000000 *&^%$QWERTY QWERTY"
    "2344. digital marketing information: 2020-2021***….Keywrod1: *** 2020-2021
    digital marketing information
    digital marketing information
    
    Digital marketing: =
    also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.""
    ""Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    
    
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.""
    
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.""
    Keywrod1: *** 2020-2021
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    Keyword2"
    "1. digital marketing information: 2021-2022***….Keywrod1: 
    2021-2022***
    
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    
    
    QWERTY Keyword2: 30000000 *&^%$QWERTY QWERTY"
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

  10. #530
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,315
    Rep Power
    10
    Further info for the last two posts

    Input ( Sheet1)

    _____ Workbook: VBA row to cell1.xlsx ( Using Excel 2007 32 bit )
    Row\Col
    A
    30
    1. digital marketing information: 2021-2022***….Keywrod1:
    2021-2022***
    31
    32
    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    33
    34
    35
    QWERTY Keyword2: 30000000 *&^%$QWERTY QWERTY
    Worksheet: InputSheet1
    Code:
    "1. digital marketing information: 2021-2022***….Keywrod1: 
    2021-2022***"
    
    "Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel."
    
    
    QWERTY Keyword2: 30000000 *&^%$QWERTY QWERTY

    Output Sheet 2

    _____ Workbook: VBA row to cell1.xlsx ( Using Excel 2007 32 bit )
    Row\Col
    A
    4
    1. digital marketing information: 2021-2022***….Keywrod1:
    2021-2022***

    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to
    connect with potential customers using the internet and other forms of digital communication.
    This includes not only email, social media, and web-based advertising, but also
    text and multimedia messages as a marketing channel.


    QWERTY Keyword2: 30000000 *&^%$QWERTY QWERTY
    Worksheet: OutputSheet2
    Code:
    "1. digital marketing information: 2021-2022***….Keywrod1: 
    2021-2022***
    
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    Digital marketing, also called online marketing, is the promotion of brands to 
    connect with potential customers using the internet and other forms of digital communication. 
    This includes not only email, social media, and web-based advertising, but also 
    text and multimedia messages as a marketing channel.
    
    
    QWERTY Keyword2: 30000000 *&^%$QWERTY QWERTY"




    Test

    Sept 14 https://www.youtube.com/watch?v=U76ZRIzBhOA https://bit.ly/3EuOh7B
    May 14 https://www.youtube.com/watch?v=tPRv-ATUBe4 https://bit.ly/3rMAaTw
    May 6 https://www.youtube.com/watch?v=7KPH...baD5Vd&index=5 https://bit.ly/3TtTlNV
    May 4 https://www.youtube.com/watch?v=nDlGkDENCyM https://bit.ly/3MkNUhC
    Apr 29 https://www.youtube.com/watch?v=xqBh...baD5Vd&index=6 https://bit.ly/3ejT2WX
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

Similar Threads

  1. Replies: 184
    Last Post: 03-16-2024, 01:16 PM
  2. Replies: 540
    Last Post: 04-24-2023, 04:23 PM
  3. Replies: 3
    Last Post: 03-07-2022, 05:12 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •