+ Reply to Thread
Results 1 to 2 of 2

Random sentence maker from group of words

Hybrid View

  1. #1
    Registered User
    Join Date
    08-26-2010
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    8

    Random sentence maker from group of words

    I am trying to take from a range of random words and output a sentence onto sheet 2 but I am stuck, any thoughts would be appreciated.

    Option Explicit
    
    Sub main()
        Dim rng As Range
        Dim sentenceNumber As Long
        Dim sheet As Long
        
        
        Set rng = Range(cells(1, 1), cells(10, 10))
        
        
        sentenceNumber = InputBox("How many sentences?")
        
        sentence rng, "Sheet2"
        
        
        
    End Sub
    
    Sub sentence(ByVal rng As Range, ByVal sheetname As String)
        rng.Value = article & " " & noun & " " & verb & " " & preposition
    End Sub
    
    Function article()
        Const ARTICLE_COL As Long = 1
        Dim lastRow As Long
        Dim row As Long
        Dim startRow As Long
     
        startRow = 1
        lastRow = findLastRow(ARTICLE_COL)
     
        Dim rng As Range
        Set rng = Range(cells(startRow, ARTICLE_COL), cells(lastRow, ARTICLE_COL))
        
            For row = startRow To lastRow
            Dim randomCell As String
            Dim word As String
            randomCell = Application.WorksheetFunction.RandBetween(1, lastRow)
            word = cells(randomCell, ARTICLE_COL).Value
            Next row
        article = word
    End Function
    
    Function noun()
        Const NOUN_COL As Long = 2
        Dim lastRow As Long
    
        Dim startRow As Long
     
        startRow = 1
        lastRow = findLastRow(NOUN_COL)
     
        Dim rng As Range
        Set rng = Range(cells(startRow, NOUN_COL), cells(lastRow, NOUN_COL))
     
    End Function
    
    Function verb()
        Const Verb_COL As Long = 3
        Dim lastRow As Long
    
        Dim startRow As Long
     
        startRow = 1
        lastRow = findLastRow(Verb_COL)
     
        Dim rng As Range
        Set rng = Range(cells(startRow, Verb_COL), cells(lastRow, Verb_COL))
     
    End Function
    
    Function preposition()
        Const PREP_COL As Long = 4
        Dim lastRow As Long
    
        Dim startRow As Long
     
        startRow = 1
        lastRow = findLastRow(PREP_COL)
     
        Dim rng As Range
        Set rng = Range(cells(startRow, PREP_COL), cells(lastRow, PREP_COL))
     
    End Function
    
    Function findLastRow(ByVal col As Integer) As Long
        'find the last row with data in a given column
     
        findLastRow = cells(Rows.count, col).End(xlUp).row
    End Function

  2. #2
    Forum Expert Paul's Avatar
    Join Date
    02-05-2007
    Location
    Wisconsin
    MS-Off Ver
    2016/365
    Posts
    6,887

    Re: Random sentence maker from group of words

    At what point are you getting stuck? Are you getting an error? Why are you even trying to do this? Why split each part of the sentence into its own function? (etc..)

    Based on this and your last post, it sounds like you're trying to do homework or a project. Dice rolling? Sentence creation? These aren't typical business apps or personal endeavors, but more likely questions from a textbook.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1