Skip to content

Instantly share code, notes, and snippets.

@mnelson7982
mnelson7982 / ScheduleExporter.cs
Last active February 17, 2021 17:33
Export All Revit Schedules to CSV. Exports to the User's MyDocuments folder under RVT_Schedules \ {{PROJECT NAME}}\
using Autodesk.Revit.UI;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI.Selection;
using System.Collections.Generic;
using System.Linq;
using System.IO;
using System.Text.RegularExpressions;
using System.Text;
namespace BasicMacros