REvit Shared Params export with more controls v2.0
       Attribute VB_Name = "REVIT_EXPORT_Library" Option Explicit  Const VBQT = """"  Sub REVIT_Shared_Params_EXPORT() Dim ws As Worksheet Dim objTxtFile As TextStream ''As Integer Dim FilePath As String Dim strN As String Dim nRow As Integer Dim ncol As Integer Dim RowMax As Integer Dim ColMax As Integer Dim RColmax As Integer Dim strLine As String Dim strFmt As String Dim obj Dim CheckGroup As Range  Dim GroupID_START As Integer Dim GroupID_END As Integer  Dim FSO As FileSystemObject          If MsgBox("This exports the ''PARAMS' worksheet, or ACTIVE worksheet in shared parameters format, in the same folder as the EXCEL file." & vbCr & vbCr & "Continue?", vbInformation + vbYesNo) <> vbYes Then        MsgBox "Exititng", vbExclamation        Exit Sub     End If          Set FSO = CreateObject("Scripting.FileSystemObject")          On Error Resume Next     Set ws = ActiveWorkbook....